The Bourne shell (sh) is a shell command-line interpreter for computer operating systems.

Disambiguation

SEE ALSO: bash which is the newer more modern version of Bourne Shell. Most shells are actually using bash.

Cheatsheets

SEE ALSO: Cheatsheet

shebang

To write a script using the Bourne Shell start with the shebang:

#!/bin/sh

Syntax