export appName='installer-scripts'; export installationPath="$appDir/$appName"; downloadPack(){ wget 'https://github.com/harish2704/installer-scripts/archive/master.zip'; } installPack(){ unzip 'master.zip' mv 'installer-scripts-master' "$appName"; cd "$appName"; # find ./ -type f -or -type l -executable > 'binaries.lst'; touch 'binaries.lst'; }