Wednesday, July 13, 2016

Delete all .bak files

In Bash, you can delete all .bak files like this:


rm $(find . -name '*.bak')


Short and sweet!

No comments:

Post a Comment