summaryrefslogtreecommitdiff
path: root/stdin-wrapper
diff options
context:
space:
mode:
Diffstat (limited to 'stdin-wrapper')
-rwxr-xr-xstdin-wrapper4
1 files changed, 1 insertions, 3 deletions
diff --git a/stdin-wrapper b/stdin-wrapper
index f81f4617..de4af0e5 100755
--- a/stdin-wrapper
+++ b/stdin-wrapper
@@ -16,8 +16,6 @@ temp_dir=$(mktemp -d 2>/dev/null || mktemp -d -t 'ale_linter')
temp_file="$temp_dir/file$file_extension"
trap 'rm -r "$temp_dir"' EXIT
-while read -r; do
- echo "$REPLY" >> "$temp_file"
-done
+cat > "$temp_file"
"$@" "$temp_file"