Bourne Shell: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page, added interpreter template, and some info about scripts)
 
m (Fixed link to interpreter template)
Line 7: Line 7:
This specifies which binary to use to interpret the script.
This specifies which binary to use to interpret the script.


[[interpreter}}
{{interpreter}}

Revision as of 06:03, 23 January 2007

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.

Template:Interpreter