FIND

Post fully complete "how to" guides and tutorials here. This is a great place to get feedback on stuff you might put in the wiki.

Moderators: MattKingUSA, khz

GordonS
Established Member
Posts: 31
Joined: Tue Dec 04, 2012 6:13 pm

Re: FIND

Post by GordonS »

My guess is that the find is doing something like locating manual pages or some such.

If it's a concern that it's using CPU power, you could find where it's invoked and precede it with the command 'nice', which lowers its precedence, e.g., something like:

nice find . -name "blah"

I concur with others that the find command, arcane though it is, is a vital and superbly powerful tool! I use it regularly, often like this:

Code: Select all

for i in $(find . -name "*.mxl" )
do
    #do some work with file $i
done
Gordon.
User avatar
khz
Established Member
Posts: 1648
Joined: Thu Apr 17, 2008 6:29 am
Location: German
Has thanked: 42 times
Been thanked: 92 times

Re: FIND

Post by khz »

linuxdevcenter wrote:This directory of Linux commands is from Linux in a Nutshell, 5th Edition.

Click on any of the 687 commands below to get a description and list of available options. All links in the command summaries point to the online version of the book on Safari Bookshelf.
>> http://www.linuxdevcenter.com/cmd/ <<
. . . FZ - Does humor belongs in Music?
. . GNU/LINUX@AUDIO ~ /Wiki $ Howto.Info && GNU/Linux Debian installing >> Linux Audio Workstation LAW
  • I don't care about the freedom of speech because I have nothing to say.
Post Reply