11 lines
226 B
Bash
11 lines
226 B
Bash
#!/bin/bash
|
|
#Check if config is in current directory
|
|
if [[ ! -f Locations.conf ]];then
|
|
echo "Location config not found, Please got to the Project directory"
|
|
exit 10
|
|
fi
|
|
|
|
for filename in ./Tool-*; do
|
|
$SHELL $filename
|
|
done
|