Initial commit of files

This commit is contained in:
2021-01-22 10:13:40 -05:00
parent 7081dcecc5
commit 56aa3a219b
47 changed files with 2157 additions and 0 deletions

16
bin/srv-update.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
cd $HOME
for i in ProbeStar NTCNA CAMP Gits
do
if [ -d "$i" ]; then
if [ "$i" == "ProbeStar" ]; then
$HOME/bin/pstar-update.sh
else
d=`echo "${i,,}"`
$HOME/bin/$d-update.sh
fi
fi
done