首页 > linux > shell下以美元符$开头的环境变量

shell下以美元符$开头的环境变量

2013年10月15日 发表评论 阅读评论

shell脚本中常见的以美元符开头的环境变量,有的时候英文描述好像比中文更贴切一些。

大家直接看英文吧。

$n $1 the first parameter,$2 the second...
$# the number of command-line parameters.
$0 the name of current program.
$? last command or function's return value.
$$ the program's PID.
$! last program's PID.
$@ save all the parameters.

看完说明举个实际例子才能更好的理解

保存如上内容为testenv.sh,然后在命令行执行

$ chmod a+x testenv.sh
$ ./testenv.sh first second
the number of command-line parameters: 2
the first parameter: first
the name of current program: ./testenv.sh
last command or function's return value: 0
the programs PID: 10688
last program's PID:
all the parameters: first second

分类: linux 标签: ,
  1. 本文目前尚无任何评论.
  1. 本文目前尚无任何 trackbacks 和 pingbacks.