From: Armaan Bhojwani Date: Thu, 15 Jul 2021 18:22:03 +0000 (-0400) Subject: inp: fix quotes X-Git-Url: https://git.armaanb.net/?p=bin.git;a=commitdiff_plain;h=a6f08a72d1c45fd44047b0a183264c8dd56b262f inp: fix quotes --- diff --git a/inp b/inp index 04b96cf..1689f79 100755 --- a/inp +++ b/inp @@ -1,4 +1,4 @@ #!/usr/bin/env sh -"$1" "$2" > "${2}.tmp" +$1 "$2" > "${2}.tmp" mv "${2}.tmp" "$2"