From 7ca5f973d40b7c9f3b7bcd8d3ad4fe25a92201eb Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 30 May 2025 09:37:28 +0900 Subject: [PATCH] Fix the -n -> -z --- screen_init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screen_init.sh b/screen_init.sh index d796d02..fd827e9 100755 --- a/screen_init.sh +++ b/screen_init.sh @@ -102,7 +102,7 @@ do continue; fi; # skip empty lines - if [ -n "$line" ]; then + if [ -z "$line" ]; then continue; fi; # extract screen title and command (should also be cleaned for title)