Bourne Shell: Difference between revisions

From Rosetta Code
Content added Content deleted
m (Fixed link to interpreter template)
No edit summary
Line 1: Line 1:
The '''Bourne Shell''' is the UNIX shell upon which most such shells are based.
The '''Bourne Shell''' is a UNIX shell upon which many shells are based; notably ksh and bash. (The other major tree of UNIX shells descend from csh)


All Bourne Shell scripts begin like this:
A Bourne Shell script begins like this:


#!/bin/sh
#!/bin/sh

Revision as of 05:34, 27 January 2007

The Bourne Shell is a UNIX shell upon which many shells are based; notably ksh and bash. (The other major tree of UNIX shells descend from csh)

A Bourne Shell script begins like this:

#!/bin/sh

This specifies which binary to use to interpret the script.

Template:Interpreter