| Linux Apache (6) Network (11) shell (12) |
Recursively delete all files matching a certain pattern
Question: I need to delete all index.html files in a directory and all its subdirectories. How can I do this?Answer: Use find and pipe the output to rm:
Comments:
|