[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: [OT] Collective memory query



On Monday 27 September 2004 16.28, Mason Loring Bliss wrote:
>
> for foo in `find . -name "something"`

Note that 
$ for foo in `command outputting a list of filenames`

should *always* be replaced by

$ said command | while read foo; do ...

(Or, for trivial cases, xargs) because the for loop will not work with more 
than a few hundred files.


greetings
-- vbi


-- 
Beware of the FUD - know your enemies. This week
    * Patent Law, and how it is currently abused. *
http://fortytwo.ch/

Attachment: pgpmAp1Xr00rR.pgp
Description: PGP signature


Reply to: