OT ???

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Brian Cluff
Date:  
Subject: 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