Tweaks for CarPi setup/install

This commit is contained in:
2021-09-01 15:50:03 -04:00
parent 70b66e3f54
commit 14b79ac56b
21 changed files with 12 additions and 12 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