#!/bin/sh

export MARY="12345";
echo "inside the script:" $MARY;

# command line arguments
#
echo $*;

echo "program name:" $0
echo "first argument:" $1
echo "second argument:" $2


#
# end of file
