Last active
August 29, 2015 14:15
-
-
Save wcccode/8070b255fef232916471 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$$ | |
Shell本身的PID(ProcessID) | |
$! | |
Shell最后运行的后台Process的PID | |
$? | |
最后运行的命令的结束代码(返回值) | |
$- | |
使用Set命令设定的Flag一览 | |
$* | |
所有参数列表。如"$*"用「"」括起来的情况、以"$1 $2 … $n"的形式输出所有参数。 | |
$@ | |
所有参数列表。如"$@"用「"」括起来的情况、以"$1" "$2" … "$n" 的形式输出所有参数。 | |
$# | |
添加到Shell的参数个数 | |
$0 | |
Shell本身的文件名 | |
$1~$n | |
添加到Shell的各参数值。$1是第1参数、$2是第2参数…。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment