summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfilebin.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/filebin.sh b/filebin.sh
index a6d6635..7376997 100755
--- a/filebin.sh
+++ b/filebin.sh
@@ -1,6 +1,6 @@
#!/bin/sh
#----------------------------------------------------
-# Version: 0.2.1
+# Version: 0.2.2
# Author: Florian "Bluewind" Pritz <f-p@gmx.at>
#
# Licensed under WTFPL v2
@@ -19,7 +19,7 @@ else
file=$(mktemp)
tmpfile=1
while read -r input; do
- echo $input >> $file
+ echo "$input" >> $file
done
fi