OT ???

Αρχική Σελίδα
Συνημμένα:
Μήνυμα σαν ηλεκτρονικό μήνυμα
+ (text/plain)
Delete this message
Reply to this message
Συντάκτης: Brian Cluff
Ημερομηνία:  
Αντικείμενο: 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