if [ $# -eq 0 ]
	then
		echo "Usage: eg04_chkargs2 argument..." 1>&2  #1>&2 notation to redirect its output to standard error
		exit 1     #exit status 1
fi
echo "Programming running"
exit 0   #exit status 0
