diff options
Diffstat (limited to 'stdin-wrapper')
-rwxr-xr-x | stdin-wrapper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdin-wrapper b/stdin-wrapper index b3f9a2f9..96d08919 100755 --- a/stdin-wrapper +++ b/stdin-wrapper @@ -16,7 +16,7 @@ temp_file="$temp_file$file_extension" trap "rm $temp_file" EXIT -while read; do +while read -r; do echo "$REPLY" >> "$temp_file" done |