H
Hugh Kang
In Unix script, I use $1 and $2 to get the fields.
For example, when I do,
In start_test script, I check
case $1 in
'start')
.....
TIME=$2
.....
;;
esac
How do I do the same thing with a perl script?
Many thnaks in advance
Hugh
For example, when I do,
./start_test start 10
In start_test script, I check
case $1 in
'start')
.....
TIME=$2
.....
;;
esac
How do I do the same thing with a perl script?
Many thnaks in advance
Hugh