Skip to content

Instantly share code, notes, and snippets.

@mallej
Created February 1, 2018 12:24
Show Gist options
  • Save mallej/abc9a11a7563052fba8865f566cc2d5c to your computer and use it in GitHub Desktop.
Save mallej/abc9a11a7563052fba8865f566cc2d5c to your computer and use it in GitHub Desktop.
[run sh file] How To Run the .sh File Shell Script In Linux / UNIX #script
# more info here:
# https://www.cyberciti.biz/faq/run-execute-sh-shell-script/
# Set execute permission on your script:
chmod +x script-name-here.sh
# To run your script, enter:
./script-name-here.sh
# OR
sh script-name-here.sh
# OR
bash script-name-here.sh
@mallej
Copy link
Author

mallej commented Jul 28, 2022

Can i not run this script in windows 7 for 32bit machine?

I do not think so. This is not really a script but a snippet for linux, unix, macOS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment