Skip to content

Instantly share code, notes, and snippets.

@wcccode
Last active August 29, 2015 14:15
Show Gist options
  • Save wcccode/8070b255fef232916471 to your computer and use it in GitHub Desktop.
Save wcccode/8070b255fef232916471 to your computer and use it in GitHub Desktop.
$$
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