shellLinux shell 位置变量详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shellLinux shell 位置变量详解相关的知识,希望对你有一定的参考价值。

Linux shell 位置变量详解

什么是位置变量?

简单来说,在用户运行脚本的同时输入参数,这些参数所对应的变量称为位置变量。

例子:

[[email protected] scripts]# ./ping.sh www.baidu.com
Host www.baidu.com is up.
[[email protected] scripts]# ./ping.sh klsdjfkldjfkldf.kljjfdkljfdljds.com
Host klsdjfkldjfkldf.kljjfdkljfdljds.com is down.

在调用脚本的时候赋值。

查看脚本:

[[email protected] scripts]# cat ping.sh
#!/bin/bash
#arppinging or XiaoPeng
ping -c 2 -w 2 $1 >/dev/null 2>&1

[ $? -eq 0 ] && echo "Host $1 is up." || echo "Host $1 is down." 

位置参数

$1:第一个参数,比如 ./ping.sh 1.1.1.1 2.2.2.2,那么$1就是1.1.1.1
$2:第二个参数,比如./ping.sh 1.1.1.1 2.2.2.2 ,那么$2就是2.2.2.2
......
$0:脚本名字
$#:一共有几个参数
[email protected]:显示全部参数

例子:

查看脚本
#!/bin/bash -
#arppinging or XiaoPeng

echo ‘ $0 $1 $2 $# [email protected]‘
echo $0 $1 $2 $# [email protected]

**执行脚本**
[[email protected] scripts]# ./var.sh 1 2 3 4 5
 $0      $1$2$# [email protected]
./var.sh 1 2 5 1 2 3 4 5

总结:记住几个常用的参数$0\$1\$#\[email protected]即可。

版权:arppinging

以上是关于shellLinux shell 位置变量详解的主要内容,如果未能解决你的问题,请参考以下文章

shellLinux shell 之 case 详解

shellLinux shell if 语句详解

shellLinux shell 之break和continue详解

shellLinux shell 之 打印99乘法表详解

shellLinux shell 之 判断用户输入的变量是否为数字

shellLinux shell中括号的用法