An open API service indexing awesome lists of open source software.

https://github.com/holland97/bash-script-app-install


https://github.com/holland97/bash-script-app-install

bash-functions bash-scripting if-statements silent-install

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Bash_Script_App_Install
Bash script that installs some common applications on a MacOS machine silently
# Instructions
1. Create empty text file to house your script

``
touch app_install.sh
``

2. Create functions to check whether applications are installed beforehand and provide a message saying " Desired_App is installed or Not "
3. Create functions that list the steps of app installation ( download, mounting, copying, unmounting, and install completion )
4. Create a loop that executions the install function if the apps are confirmed not there
5. Change permission of file to allow execution

``
chmod +x app_install.sh
``

6. Execute the script

``
./app_install.sh
``