Files
zShared/shared/rGitPull
USER 3ecc65c4df .
2023-02-04 21:06:41 +00:00

20 lines
226 B
Bash
Executable File

#!/bin/sh
#
echo "SCRIPT $0 starting"
MYNAME=`uname -n`
ZPC=/zz
REPO='zPublic zPublicConfig zShared'
if [ -d ${ZPC} ]
then
for i in `ls -d ${ZPC}/z*`
do
echo $i
(cd $i; git pull)
done
fi
exit 0