From 5aa3cd0e8d422de200931ecb25d6ad9e0a8eeeb5 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sun, 14 Jul 2024 10:47:58 +0100 Subject: [PATCH] Properly quote image filepath in autopape.sh --- autopape.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autopape.sh b/autopape.sh index f5784c5..e0015ac 100755 --- a/autopape.sh +++ b/autopape.sh @@ -37,7 +37,7 @@ while [ true ] do for img in * do - eval "$command" "$img" + eval "$command '$img'" sleep "$interval" done done