Reputation: 105
I'm using ubuntu 15.10. I have "backup_old.zip" file in more than 100 directories. How can I remove all "backup_old.zip" file in single linux shell command.
Upvotes: 0
Views: 64
Reputation: 105
This shell command was worked for me.
$ find . -name backup_old.zip -type f -exec rm -r {} \;
Upvotes: 1