From b53e336858b28b6608f56a44a148ac9100661c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakobus=20Sch=C3=BCrz?= Date: Tue, 15 Dec 2020 13:17:18 +0100 Subject: [PATCH] fix blank --- functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index 7d00bbb..ef86ae2 100755 --- a/functions.sh +++ b/functions.sh @@ -356,7 +356,7 @@ sshs() { echo "FILELIST: $FILELIST" if [ -e "${HOME}/.config/myshellconfig/sshs_addfiles.conf" ] ; then for f in $(cat "${HOME}/.config/myshellconfig/sshs_addfiles.conf");do - [ -e "$f" ] && {\ + [ -e "$f" ] && {\ echo "add $f to FILELIST"; \ FILELIST+=("$f"); } done