Differences between revisions 1 and 16 (spanning 15 versions)
Revision 1 as of 2022-05-21 04:08:58
Size: 297
Comment:
Revision 16 as of 2023-01-30 00:56:07
Size: 1165
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
The core, POSIX-compliant shell on any *nix system. `sh(1)` is a POSIX compliant shell.
Line 5: Line 5:
Originally `sh(1)`, several distribution of Linux ''actually'' use `bash(1)` or `dash(1)`. BSDs trend towards `tcsh(1)`. Several distributions of [[Linux]] actually use `bash(1)` or `dash(1)` to satisfy `sh(1)`. [[BSD]] operating systems commonly use `tcsh(1)`.
Line 13: Line 13:
== Example ==

{{{
echo "Hello, world!"
}}}

This can be executed like:

{{{
sh ./example.sh
}}}

----


Line 15: Line 31:
 * [[Sh/Tests|Tests]]  * [[Shell/Arithmetic|Arithmetic]]
 * [[Shell/BuiltinCommands|Builtin Commands]]
 * [[Shell/Expansion|Expansion]]
 * [[Shell/FileDescriptor|File Descriptors]]
 * [[Shell/Function|Functions]]
 * [[Shell/JobControl|Job Control]]
 * [[Shell/Logic|Logic]]
 * [[Shell/Looping|Looping]]
 * [[Shell/Pipeline|Pipelines]]
 * [[Shell/Quoting|Quoting]]
 * [[Shell/ShellOptions|Shell Options]]
 * [[Shell/ShellVariables|Shell Variables]]
 * [[Shell/Redirection|Redirection]]
 * [[Shell/Test|Tests]]
 * [[Shell/Trap|Traps]]
 * [[Shell/Variables|Variables]]

----



== See also ==

[[https://www.shellcheck.net/wiki/|The shellcheck wiki]], the online reference for `shellcheck(1)`

[[https://github.com/dylanaraps/pure-sh-bible|Dylan's pure sh bible]]

Shell

sh(1) is a POSIX compliant shell.

Several distributions of Linux actually use bash(1) or dash(1) to satisfy sh(1). BSD operating systems commonly use tcsh(1).


Example

echo "Hello, world!"

This can be executed like:

sh ./example.sh


Syntax


See also

The shellcheck wiki, the online reference for shellcheck(1)

Dylan's pure sh bible


CategoryRicottone

Shell (last edited 2023-04-06 16:03:50 by DominicRicottone)