| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | <sect2><title>Contents</title><para>The Findutils package contains the find, locate, updatedb and xargsprograms.</para></sect2><sect2><title>Description</title><sect3><title>Find</title><para>The find program searches for files in a directory hierarchy which matcha certain criteria. If no criteria is given, it lists all files in thecurrent directory and it's subdirectories.</para></sect3><sect3><title>Locate</title><para>Locate scans a database which contain all files and directories on afilesystem. This program lists the files and directories in thisdatabase matching a certain criteria. If you're looking for a file thisprogram will scan the database and tell you exactly where the files yourequested are located. This only makes sense if your locate database isfairly up-to-date else it will provide you with out-of-date information.</para></sect3><sect3><title>Updatedb</title><para>The updatedb program updates the locate database. It scans the entirefile system (including other file system that are currently mountedunless you specify it not to) and puts every directory and file it findsinto the database that's used by the locate program which retrieves thisinformation. It's a good practice to update this database once a day sothat you are ensured of a database that is up-to-date.</para></sect3><sect3><title>Xargs</title><para>The xargs command applies a command to a list of files. If you need toperform the same command on multiple files, you can create a file thatcontains all these files (one per line) and use xargs to perform thatcommand on the list.</para></sect3></sect2>
 |