guru <guru.naveen RemoveThis @gmail.com> writes:
> I wanted to remove all softlinks in a given directory(ex: linux source
> directory).
If I were you, I'd change my "screen name" from "guru" to something
less ambitious, before asking such a beginner question
> How this can be done.?
find . -type l -print0 | xargs -0 rm -f
Cheers,
--
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.