This commit is contained in:
USER
2023-03-27 21:22:22 +01:00
parent 9664d97474
commit 2831331e93
3 changed files with 17 additions and 8 deletions

29
sbin/GitClone Executable file
View File

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