mirror of https://github.com/fengyuhetao/shell.git
11 lines
205 B
Bash
11 lines
205 B
Bash
|
#!/bin/bash
|
||
|
# getting the number of parameters
|
||
|
|
||
|
echo There were $# parameters supplied
|
||
|
|
||
|
#花括号里不能使用美元符号
|
||
|
params=$#
|
||
|
|
||
|
echo The last parameter is $params
|
||
|
echo The last parameter is ${!#}
|