以下列举了$的常用方法
$n表示传递给脚本的参数,$1表示第一个,$2表示第二个…
$#表示传递给脚本的参数个数
$0 表示脚本的名字。
$? 表示上一次命令的退出状态,成功为0,否则为1
$$表示当前程序进程的ID号
$! 表示上次程序进程的ID号
$@ 传递给脚本的所有参数
举例说明:
axe@debian:~$ vi 1.sh
#!usr/bin/bash -x
echo "$1","$2";
echo "$#"
echo "$0"
test -e xyy.py
echo "$?"
echo "$$"
echo "$@"
加上权限:
axe@debian:~$ chmod 777 1.sh
对应的输出如下:
axe@debian:~$ bash 1.sh a b
a,b
2
1.sh
1
4436
a b
linux中shell变量$#$@$0$1$2的含义解释:http://www.linuxdiyf.com/linux/12844.html
Linux Shell中的美元符号$:http://www.linuxdiyf.com/linux/7511.html
Linux数组array基础【${a[*]}和$a的区别】:http://www.linuxdiyf.com/linux/5839.html
Linux里面$?的使用注意事项:http://www.linuxdiyf.com/linux/2063.html