From 28aa6a78426de6ee82a98fdc93756bfc706e8b0e Mon Sep 17 00:00:00 2001 From: Carlos Fenollosa Date: Thu, 7 Mar 2013 22:29:18 +0100 Subject: [PATCH] Unquoted rm parameters --- bb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bb.sh b/bb.sh index 609685a..d5398d2 100755 --- a/bb.sh +++ b/bb.sh @@ -590,7 +590,7 @@ reset() { echo "Are you sure you want to delete all blog entries? Please write \"Yes, I am!\" " read line if [ "$line" == "Yes, I am!" ]; then - rm "*.html" "*.css" "*.rss" + rm *.html *.css *.rss echo "Deleted all posts, stylesheets and feeds." else echo "Phew! You dodged a bullet there. Nothing was modified."