存档

文章标签 ‘环境变量’

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. 看完说明举个实际例子才能更好的理解 #!/bin/bash echo "the number of command-line parameters: ...

分类: linux 标签: ,