On Sat, 08 Mar 2008 11:54:07 -0800, Darren New wrote: > Here's a contest. Given the directory /tmp/stuff, delete all the files > in that directory that end with ".tmp". cd /tmp/stuff; find -type f | grep tmp$ | awk '{system("rm \"" $0 "\""))' Jim
Post a reply to this message