#!/bin/ksh # demo-args.ksh print "there are $# args to this script" print "they are '$*'" print "the above 'print' returned $?" # end of demo-args.ksh