OT ???

Top Pagina
Bijlagen:
Bericht als e-mail
+ (text/plain)
Delete this message
Reply to this message
Auteur: Brian Cluff
Datum:  
Onderwerp: OT ???
> find . -iname \*bin/laden\* -exec rm {} \; -print
> find . -iname \*talaban\* -exec rm {} \; -print


I prefer the more readable and shorter
rm -rf `find / |grep -i -e bin/laden -e talaban`

Brian Cluff