#!/bin/sh

# a script named myArgs

echo "1st: $1"
echo "1st: ${1}"
echo "2ed: $2"
echo "9th: $9"
echo "10th: $10"
echo "1st and zero: ${1}0"

echo "The number of args: $#"   #  ${#}
echo "the list of args: $*"
echo "the list of args: $@"
