You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
288 B
14 lines
288 B
#! /usr/bin/bash
|
|
# testparam.sh
|
|
echo " Param #0: ${0}"
|
|
echo " Param #1: ${1}"
|
|
echo " Param #2: ${2}"
|
|
echo " Param #3: ${3}"
|
|
echo " Param #4: ${4}"
|
|
echo " Param #5: ${5}"
|
|
echo " Param #6: ${6}"
|
|
echo " Param #7: ${7}"
|
|
echo " Param #8: ${8}"
|
|
echo " Param #9: ${9}"
|
|
echo " Param #10: ${10}"
|
|
|
|
|