Merge branch 'master' of /srv/git/myshellconfig

This commit is contained in:
Jakobus Schürz 2020-12-15 12:59:27 +01:00
commit f8ad3d39ba

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