I\'ve run into a really silly problem with a Linux shell script. I want to delete all files with the extension \".bz2\" in a directory. In the script I call
rm \
Why not just rm -rf */*.bz2? Works for me on OSX.
rm -rf */*.bz2