026_关于shell中的特殊变量$0 $n $* $@ $! $?

Posted arun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了026_关于shell中的特殊变量$0 $n $* $@ $! $?相关的知识,希望对你有一定的参考价值。

一、

$n:获取当前执行的shell脚本的第N个参数,n=1..9,当n为0时表示脚本的文件名,如果n大于9,用大括号括起来like${10}.

$*:获取当前shell的所有参数,将所有的命令行参数视为单个字符串。
[email protected]:这个程序的所有参数"$1" "$2" "$3" "...",这是将参数传递给其他程序的最佳方式,因此TA会保留所有内嵌在每个参数里的任何空白。
$#:获取当前shell命令行中参数的总个数。

$_:代表上一个命令的最后一个参数

eg:

cat test.sh
#!/bin/bash
echo $_

sh test.sh 1 2 3 4 5
/bin/sh

$!:代表最后执行的后台命令的PID

eg:

?  agent git:(master) ? nohup ./falcon-agent  -c  cfg.json &> var/app.log &
[1] 76901
?  agent git:(master) ? ps -p $!
  PID TTY           TIME CMD
76901 ttys000    0:00.01 ./falcon-agent -c cfg.json
?  agent git:(master) ? echo $!
76901
?  agent git:(master) ? ps -p $!
  PID TTY           TIME CMD
76901 ttys000    0:00.02 ./falcon-agent -c cfg.json
?  agent git:(master) ? echo $!
76901

? agent git:(master) ? nohup sh ./test.sh &
[2] 79469
appending output to nohup.out
? agent git:(master) ? echo $!
79469

二、

 

参考:http://www.111cn.net/sys/linux/79750.htm

 








以上是关于026_关于shell中的特殊变量$0 $n $* $@ $! $?的主要内容,如果未能解决你的问题,请参考以下文章

Shell中的特殊变量($0$#$*$@$$$!$?$1~$n)

Shell编程-03-Shell中的特殊变量和扩展变量

shell--特殊位置参数变量及常用内置变量

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

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

shell 中的特殊变量