#!/bin/sh # (run the following in standard Bourne shell) clear echo echo Environment variables: set echo if test "$1" = "" then echo No command-line arguments else echo Command-line arguments $* echo First argument $1 fi