码迷,mamicode.com
首页 > 其他好文 > 详细

Bash中的$符号

时间:2015-12-19 14:56:06      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

脚本名称:$0
PID:$$
参数个数:$#
脚本返回值:$?
第x个参数:$x
所有参数:$@

 

 1 #!/bin/bash
 2 echo "The program $0 is now running"
 3 echo "The progress PID is $$"
 4 echo "The last progress PID is $$"
 5 echo "The number of parameter is $# "
 6 echo "The return code of last command is $?"
 7 echo "The first parameter is $1"
 8 echo "The second parameter is $2"
 9 echo "The parameters are: $*"
10 echo "Again, the parameters are: $@"

 

Bash中的$符号

标签:

原文地址:http://www.cnblogs.com/imzye/p/5059091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!