shell脚本变量$#,$*,$$,$@,$0,$1,$2,$?的含义

Posted 酒红色

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本变量$#,$*,$$,$@,$0,$1,$2,$?的含义相关的知识,希望对你有一定的参考价值。

参数说明

1:$# 表示执行脚本传入参数的个数

2:$*  表示执行脚本传入参数列表

3:$$ 表示进程id

4:[email protected]表示执行脚本传入所有参数

5:$0 表示执行脚本名称

6:$1 表示第一个参数

7:$2 表示第二个参数

8:$? 表示脚本执行状态0正常,其他表示有错误

实验及结果(shellTest.sh)

#!/bin/sh

echo "parm number is : $#"
echo "parm list   is : $*"
echo "all parm is : [email protected]"
echo "process is : $$"
echo "file name is : $0"
echo "the first parm is : $1"
echo "stat is : $?"

执行及结果

执行:sh shellTest.sh "the first parm " "the second parm"

 

parm number is : 2
parm list   is : the first parm  the second parm
all parm is : the first parm  the second parm
process is : 28669
file name is : shellTest.sh
the first parm is : the first parm 
stat is : 0

 

转载:https://blog.csdn.net/kejiaming/article/details/51859503

 

以上是关于shell脚本变量$#,$*,$$,$@,$0,$1,$2,$?的含义的主要内容,如果未能解决你的问题,请参考以下文章

shell 特殊变量特殊扩展变量变量长度计算实践与应用

Shell特殊变量 $0, $#, $*, $@, $?, $$和命令行参数

Shell特殊变量:Shell $0, $#, $*, $@, $?, $$和命令行参数

shell脚本变量$#,$*,$$,$@,$0,$1,$2,$?的含义

Shell中的特殊位置参数变量全文收录

shell编程学习笔记之特殊变量($0$1$2 $? $# $@ $*)