Added NTCNA install/setup

This commit is contained in:
2021-08-31 16:21:31 -04:00
parent b5ee68b45a
commit 44ba85dc23
19 changed files with 455 additions and 0 deletions

View File

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