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 \
The quotes are causing the string to be interpreted as a string literal, try removing them.