NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
xargs is your friend (Score:2, Informative)
(darren)
Re:xargs is your friend (Score:2)
Re:xargs is your friend (Score:2, Informative)
Re:xargs is your friend (Score:3, Interesting)
Re:xargs is your friend (Score:1)
ls sorts the entries in the directory, while echo does not, which means ls will always be slower for large directories.
echo * | xargs rmis simply the shell's glob operator, which is most likely implemented using readdir.(darren)
Reply to This
Parent