Software Distributor Administration Guide for HP-UX 11i

Using Control Scripts
Introduction to Control Scripts
Chapter 11 377
Control Script Format
A control script should be a shell script (as opposed to a binary) and
written to be interpreted by the Posix.2 shell /sbin/sh. Korn shell
(formerly /bin/ksh) syntax is acceptable to the Posix.2 shell. A script
written for csh is not supported.
The script should have a simple header similar to the example below.
Included in the header should also be comment lines which state the
product and fileset to which the script belongs, the name of the script,
the revision string as required by the what(1) command, and a simple
copyright statement.
#! /sbin/sh
########
# Product: <PRODUCT>
# Fileset: <FILESET>
# configure
# @(#) $Revision: 10.30 $
########
#
# (c) Copyright MyCompany, 2001
#
########