This commit is contained in:
USER
2023-03-06 20:43:23 +00:00
parent 3beaa98ed6
commit 189d30e00d
7 changed files with 36 additions and 91 deletions

View File

@ -1,25 +0,0 @@
#!/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

View File

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

View File

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

View File

@ -1,19 +0,0 @@
#!/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