Bourne Shell

From Rosetta Code
Revision as of 05:59, 23 January 2007 by MikeMol (talk | contribs) (Created page, added interpreter template, and some info about scripts)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Bourne Shell is the UNIX shell upon which most such shells are based.

All Bourne Shell scripts begin like this:

#!/bin/sh

This specifies which binary to use to interpret the script.

[[interpreter}}