Bourne Shell: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
(Added Implementation template)
Line 1: Line 1:
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)
{{implementation|UNIX Shell}}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:
A Bourne Shell script begins like this:
Line 6: Line 6:


This specifies which binary to use to interpret the script.
This specifies which binary to use to interpret the script.

{{interpreter}}

Revision as of 00:01, 12 November 2007

Bourne Shell is an implementation of UNIX Shell. Other implementations of UNIX Shell.

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.