Files
zShared/sbin/GitClonePublic
USER 9664d97474 .
2023-03-24 21:41:39 +00:00

28 lines
329 B
Bash
Executable File

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