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
- Host: GitHub
- URL: https://github.com/holland97/bash-script-app-install
- Owner: holland97
- Created: 2024-07-25T03:39:30.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T21:12:52.000Z (9 months ago)
- Last Synced: 2025-01-01T22:09:36.492Z (5 months ago)
- Topics: bash-functions, bash-scripting, if-statements, silent-install
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
``