Files
zShared/sbin/GitClonePublic
USER 189d30e00d .
2023-03-06 20:43:23 +00:00

26 lines
324 B
Bash
Executable File

#!/bin/sh
#
echo "SCRIPT $0 starting"
MYNAME=`uname -n`
ZPC=/zz
REPO='zPublic zPublicConfig zShared'
KEYS=
if [ ! -d ${ZPC} ]
then
mkdir ${ZPC}
fi
for i in ${REPO}
do
echo $i
if [ ! -d ${ZPC}/$i ]
then
echo $i
cd ${ZPC}
git clone https://github.com/spongle70/${i}.git
fi
done