第二章:变量和运算符
变量
本地变量:在用户现在的shell生命期的脚本中使用。设置变量:various_name=value.可用set 来查看。用readonly可以使变量只读。
环境变量:用于当前用户下所有用户进程(不限于现在的shell)。
设置变量:export various_name=value。用env查看。用readonly可以使变量只读。
1# 变量替换
2echo ${variable name} 显示实际值到variable name
3echo ${variable name:+value} 如果设置了variable name,则显示其值,否则为空
4echo ${variable name:?value} 如果未设置variable name,则显现用户定义错误信息value
5echo ${variable name:-value} 如果未设置,则显示其值
6echo ${variable name:=value} 如果未设置,则设置其值,并显示
7
8# 清除变量
9unset variable name
位置变量:位置变量表示$0,$1,$2...$9
1$0 ----脚本名字
2$1 ----根据参数位置表示参数1
3eg.
4#! /bin/bash
5#parm.sh
6echo "This is script name : $0"
7echo "This is parameter 1: $1"
8echo "This is parameter 2: $2"
9[test@szbirdora 1]$sh parm.sh a b
10This is script name : parm.sh
11This is parameter 1: a
12This is parameter 2: b
13
14向系统中传递位置变量
15#!/bin/bash
16#parm.sh
17find /u01/test/1 -name $1 -print
18[test@szbirdora 1]$ sh parm.sh myfile
19/u01/test/1/myfile
标准变量:bash默认建立了一些标准环境变量,可在/etc/profile中定义
1EXINIT
2HOME
3IFS
4LOGNAME --当前登录用户名
5MAIL
6MAILPATH
7PATH
8TERM --终端信息
9TZ --时区
10PS1 --登录提示,如[test@szbirdora 1]$
11[test@szbirdora 1]$ echo $PS1
12[u@h W]$ --u -user --h -host --W -document
13PS2 --一命令多行,换行提示,如>
14PWD --当前目录
15MAILCHECK --每隔多少秒检查是否有新邮件
16[test@szbirdora 1]$ echo $MAILCHECK
1760
18SHELL
19MANPATH --帮助文档位置
20TERMINFO --终端信息
特殊变量
1$# 传递到脚本的参数个数
2$* 以一个单字符串显示所有向脚本传递的参数,与位置变量不同,参数可超过9个
3$$ 脚本运行的当前进程ID号
4$! 后台运行的最后一个进程的进程ID号
5$@ 传递到脚本的参数列表,并在引号中返回每个参数
6$- 显示shell使用的当前选项,与set命令功能相同
7$? 显示最后命令的退出状态,0表示没有错误,其他表示有错误
8eg.
9#!/bin/bash
10#parm
11echo "this is shellname: $0"
12echo "this is parm1 : $1"
13echo "this is parm2 : $2"
14echo "show parm number : $#"
15echo "show parm list : $*"
16echo "show process id: $$"
17echo "show precomm stat: $?"
18[test@szbirdora 1]$ sh parm.sh a b
19this is shellname: parm.sh
20this is parm1 : a
21this is parm2 : b
22show parm number : 2
23show parm list : a b
24show process id: 24544
25show precomm stat: 0
影响变量的命令
declare 设置或显示变量
1-f 只显示函数名
2-r 创建只读变量
3-x 创建转出变量
4-i 创建整数变量
使用+替代-,可以颠倒选项的含义
export:-p 显示全部全局变量
shift[n] 移动位置变量,调整位置变量,使$3赋予$2,使$2赋予$1 n 前移n
typeset 和declare同义
注意:双引号不能解析$,,`三个字符,所以在双引号中可以引用变量、转义字符、替换变量
单引号可以解析,所以单引号中引用变量等无效
1[test@szbirdora 1]$ echo "$test"
2test
3[test@szbirdora 1]$ echo '$test'
4$test
运算符类型
- 按位运算符
1~ 取反
2<< 左移运算符
3>> 右移运算符
4& 与
5| 或
6^ 异或
7$[ ] 表示形式告诉shell对方括号中表达式求值 $[a+b]
2.逻辑运算符
1&&
2||
3>,<,=,!=
3.赋值运算符
1let variablename1 +=variablename1+ varablename2
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/variables/220.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.