From 6993bf5d27b6e8fc4fe3ce435ef93fafefffc6f2 Mon Sep 17 00:00:00 2001 From: r4 Date: Sat, 10 Sep 2022 19:21:13 +0200 Subject: [PATCH] make c programs accept user input --- cscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cscript b/cscript index a128a51..a324ec6 100755 --- a/cscript +++ b/cscript @@ -91,7 +91,7 @@ fi if [ -n "$CSCRIPT_GDB" ]; then printf "%s" "$args" | xargs -o -d'\n' gdb --args "$tmpfile" else - printf "%s" "$args" | xargs -d'\n' "$tmpfile" + printf "%s" "$args" | xargs -o -d'\n' "$tmpfile" fi trap - INT cleanup