#!/bin/sh
#
# a report on argc and argv sh style
#
# 
	echo my name is $0
	echo my argcount is $#
	echo arg1 is $1
	echo arg2 is $2
	echo arg3 is $3
