On 03/01/07, Penedo <[EMAIL PROTECTED]> wrote:

readlink -fe link | xargs  -0r rm -rf


Correction to the above - apparently xargs waits for "\0" in order to
terminate its input, so maybe the following is more appropriate:

$ (readlink -fen link ; echo -e \\0) | xargs  -0r rm -rf

--Amos
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to