Created
February 1, 2018 12:24
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
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
Can i not run this script in windows 7 for 32bit machine?