Change from cat a variable to echo a variable

This commit is contained in:
testing_rouxdo 2015-05-08 10:03:03 +02:00
parent 4f2d529085
commit 40d19a6bbb
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ echo "$prefix" > "$block"
if [ "$text" = "-" ]; then
cat "$__object/stdin" >> "$block"
else
cat "$text" >> "$block"
echo "$text" >> "$block"
fi
echo "$suffix" >> "$block"