add debug

This commit is contained in:
Jakobus Schürz 2020-12-15 12:57:43 +01:00
parent dcd1c66192
commit 41bce602d6

View file

@ -355,6 +355,7 @@ sshs() {
if [ -e "${HOME}/.config/myshellconfig/sshs_addfiles.conf" ] ; then
cat "${HOME}/.config/myshellconfig/sshs_addfiles.conf"|while read i;do
echo "add $i to FILELIST"
FILELIST+=("$i")
done
fi
@ -386,7 +387,7 @@ EOF
for f in ${FILELIST[*]}; do
if [ -e $f ]; then
#echo add $f to tmpconfig
echo add $f to tmpconfig
cat "$f" >> "${TMPBASHCONFIG}";
fi
done