главная|main page

состояние|status

блог|blog

файлы|files

программы|software

summaryrefslogtreecommitdiff
path: root/bb.sh
diff options
context:
space:
mode:
authorCarlos Fenollosa <carlos.fenollosa@gmail.com>2013-03-07 22:29:18 +0100
committerCarlos Fenollosa <carlos.fenollosa@gmail.com>2013-03-07 22:29:18 +0100
commit28aa6a78426de6ee82a98fdc93756bfc706e8b0e (patch)
treede88d15098b8eeeea587af8464416f8f7ddf7a64 /bb.sh
parent21fac7e7a08518e83dd40491f4b56f68e98226ef (diff)
Unquoted rm parameters
Diffstat (limited to 'bb.sh')
-rwxr-xr-xbb.sh2
1 files changed, 1 insertions, 1 deletions
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."