OT ???

Góra strony
Załączniki:
Wiadomość jako email
+ (text/plain)
Delete this message
Reply to this message
Autor: Brian Cluff
Data:  
Temat: 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