From bafcdddd31811cb9b13f2a984b291446de04a20b Mon Sep 17 00:00:00 2001 From: Jordan Niethe Date: Sat, 6 Sep 2025 17:16:36 +1000 Subject: B: Print usage message to stderr B's usage message redirects its stderr to stdout instead of vice versa. Fix this. Signed-off-by: Jordan Niethe --- bin/B | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/B') diff --git a/bin/B b/bin/B index d829374c..fc47902b 100755 --- a/bin/B +++ b/bin/B @@ -15,7 +15,7 @@ fi if [ $# -eq 0 ] then - echo 'usage: B [+line] file...' 2>&1 + echo 'usage: B [+line] file...' 1>&2 exit 1 fi -- cgit v1.2.3