Using the Bourne shell to interpret a shell script

To make sure that your shell script is always run from a standard Bourne shell have the line

   #!/bin/sh

as the first line of the script.


Top document