The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #5 (permalink)  
Old 05-13-2008
shriashishpatil shriashishpatil is offline
Registered User
 

Join Date: Dec 2005
Location: Pune
Posts: 78
hope below command will solve the problem. It will run slow though...
find . -type f -exec rm -f {} \;
replace rm -f with the command you want to run.
Reply With Quote