From 2cb03748d03eb78644df830f400182842dc8fa8d Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Sat, 5 Nov 2022 08:58:37 +0100 Subject: [PATCH] [screenrecord.sh] Fix quoting. --- screenrecord.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenrecord.sh b/screenrecord.sh index bc18b07..b9d3382 100755 --- a/screenrecord.sh +++ b/screenrecord.sh @@ -33,7 +33,7 @@ isrunning() { } usage() { - printf -- "Usage: %s: [-s|-w] [-t]\n" $(basename -- "$0" .sh) >&2 + printf -- "Usage: %s: [-s|-w] [-t]\n" "$(basename -- "$0" .sh)" >&2 exit 1 }