diff options
-rwxr-xr-x | filebin.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |