[Yes, I know this is off-topic...]

>   find . -type f -exec rm -f {} \;

    find . -type f -print | perl -ne 'chop; unlink;'

or, depending on your level of paranoia and your find supporting -print0,

    find . -type f -print0 | perl -0ne 'chop; unlink;'

-- 
Jos Backus                          _/ _/_/_/  "Reliability means never
                                   _/ _/   _/   having to say you're sorry."
                                  _/ _/_/_/             -- D. J. Bernstein
                             _/  _/ _/    _/
[EMAIL PROTECTED]  _/_/  _/_/_/      use Std::Disclaimer;

Reply via email to