#!/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 ./Installer-*; do $SHELL $filename done