|
- shell - Difference between sh and Bash - Stack Overflow
When writing shell programs, we often use bin sh and bin bash I usually use bash, but I don't know what's the difference between them What's the main difference between Bash and sh? What do we
- linux - Whats a . sh file? - Stack Overflow
Typically a sh file is a shell script which you can execute in a terminal Specifically, the script you mentioned is a bash script, which you can see if you open the file and look in the first line of the file, which is called the shebang or magic line
- How do I execute a bash script in Terminal? - Stack Overflow
It can work if sh is a symlink to bash, or if the script does not use any Bash-specific construct In the former case, using bash instead of sh is the only correct, portable solution; in the latter case, it's not the correct answer to this particular question, because the OP asked about advice for a Bash script specifically
- How to run . sh on Windows Command Prompt? - Stack Overflow
Your answer is presented as if you expect to be able to type sh on an arbitrary Windows command prompt and have it work
- linux - What exactly is the sh command? - Super User
sh is the bourne shell There are several shells, of which bourne is the old standard, installed on all unix systems, and generally the one you can guarantee will exist
- What is the difference between using `sh` and `source`?
DESCRIPTION Bash is an sh-compatible command language interpreter that executes commands read from the standard input or from a file Bash also incorporates useful features from the Korn and C shells (ksh and csh) Bash is intended to be a conformant implementation of the IEEE POSIX Shell and Tools specification (IEEE Working Group 1003 2)
- bash - What is the purpose of the `sh` command? - Super User
What is the purpose of the sh command when used interactively and when used inside of a bash script? Other than on the hash bang line (the first line) should sh ever be replaced with bash on a b
- How do I run . sh or . bat files from Terminal? - Stack Overflow
Type bash script_name sh or script_name in linux terminal Before using script_name make you script executeable by sudo chmod 700 script_name and type script_name bat in windows
|
|
|