17 lines
233 B
Bash
Executable File
17 lines
233 B
Bash
Executable File
#!/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
|
|
|