View Single Post

  #2 (permalink)  
Old 12-20-2006, 04:51 AM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,061
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Use find command
Code:
find . -name "FILE-TO-FIND"-exec rm -rf {} \;
Find all *.exe file and remove them
Code:
find . -name "*.exe"-exec rm -rf {} \;
See our FAQ for more info http://www.cyberciti.biz/faq/linux-u...-remove-files/
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote