Inital commit

This commit is contained in:
2022-06-27 19:20:21 +02:00
commit 5b80ab75d9
23 changed files with 565 additions and 0 deletions

10
Download-AllTools.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/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