# File: alpha_omega
if [ $# -lt 1 ];then
echo "Usage: $0 arg1 [arg2 ...]"
exit 1
fi

echo "First Argument: $1"
eval echo "Last Argument: \$$#"
