1、bash中的算术运算

  • let运算符
[root@:vg_adn_tidbCkhsTest~/tidb-bench/sysbench]#let i=1+2
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#echo $i
3
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#let i1=10
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#let i2=20
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#let i3=$i1+$i2
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#echo $i3
30
  • $[expression]
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#i1=$[11+22]
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#echo $i1
33
  • $((experssion))
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#i=$((22+33))
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#echo $i
55
  • expr  arg1  操作符  arg2
[root@:vg_adn_tidbCkhsTest ~/tidb-bench/sysbench]#i=`expr 11 \* 10`;echo $i
110

一般情况下使用expr运算符都要用反引号

2、判断某个用户是否存在,如果不存在,则创建此用户

#!/bin/bash
id hadop &> /dev/null || useradd hadoop

3、计算passwd文件中第10个用户和第20个用户的UID之和

#!/bin/bash
uid1=$(id -u `cat /etc/passwd |head | tail -1|cut -d':' -f1`)
uid2=$(id -u `cat /etc/passwd |head -20| tail -1|cut -d':' -f1`)
sum=$[$uid1+$uid2]
echo "10 and 20 user 's uuid is $sum"

4、统计某个文件的空白行

[root@:vg_adn_tidbCkhsTest /tmp]#cat /etc/init.d/functions | grep '^$'| wc -l
90

5、判断返回值状态

[root@:vg_adn_tidbCkhsTest /tmp]#cat /etc/fstab &> /dev/null
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#cat /etc/fstabhaha &> /dev/null #查看一个不存在的文件
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1

6、条件测试

判断某需求是否满足,需要由测试机制来实现:

  如何编写测试表达式以实现所需的测试

  • (1)执行命令,并利用命令状态返回值来判断

    0:成功

    1:失败

  • (2)测试表达式

    test EXPRESSION

    [ EXPRESSION ]  单中括号多见于数值比较

    [[ EXPRESSION ]]   双中括号多见于字符串比较

      注意:EXPRESSION两段必须有空白字符,否则为语法错误

bash的测试类型

数值测试:

-eq:是否等于

-ne:是否不等于

-gt:是否大于

-ge:是否大于等于

-lt:是否小于

-le:是否小于等于

[root@:vg_adn_tidbCkhsTest /tmp]#[ 11 -eq 21 ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1
[root@:vg_adn_tidbCkhsTest /tmp]#[ 11 -eq 11 ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

字符串测试

==:是否等于

>:是否大于

<:是否小于

!=:是否不等于

=~:左侧字符串能否被右侧的PATTERN所匹配。右侧的PATTERN不能使用bash的通配符来进行。并且PATTERN是匹配左侧字符串的某一部分而已

-z "STRING":判断指定的字串是否为空,空则为真,不空则为假

-n "STRING":判断指定的字符串是否不空,不空则真,空则为假。

[root@:vg_adn_tidbCkhsTest /tmp]#[ tom == tom ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[ tom != tom ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1
[root@:vg_adn_tidbCkhsTest /tmp]#[ "tom" != "join" ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

并不是说字符串比较这样子就完美了,如下所示:

[root@:vg_adn_tidbCkhsTest /tmp]#[ "a" > "b" ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[ "a" < "b" ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[[ "a" > "b" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1
[root@:vg_adn_tidbCkhsTest /tmp]#[[ "a" < "b" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

所以说字符串的比较有两点要注意:

1、字符串要加引用

2、要使用双中括号[[ EXPRESSION ]]来进行比较

[root@:vg_adn_tidbCkhsTest /tmp]#name=tom[root@:vg_adn_tidbCkhsTest /tmp]#[[ $name =~ "o" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[[ $name =~ "o.*" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1
[root@:vg_adn_tidbCkhsTest /tmp]#[[ $name =~ "o*" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1
[root@:vg_adn_tidbCkhsTest /tmp]#[[ $name =~ "om" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[[ $name =~ "o?" ]]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1

7、文件测试

文件存在性测试:

-e:FILE    文件的存在性测试,存在则为真,不存在则为假

文件类型测试:

-b FILE:文件是否为块设备文件

-c FILE: 文件是否为字符设备文件

-d FILE:文件是否是目录文件

-f FILE:文件是否是普通文件

-l FILE:文件是否为链接文件

-S FILE:文件是否为套接字文件

-p FILE:文件是否为管道文件

[root@:vg_adn_tidbCkhsTest /tmp]#[ -b /dev/xvda1 ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[ -f /etc/init.d/functions ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

文件权限性测试

-r  FILE:文件是否可读

-w FILE:文件是否可写

-x FILE:文件是否可执行

[root@:vg_adn_tidbCkhsTest /tmp]#[ -x /usr/bin/passwd ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

文件特殊权限测试

-g FILE:文件是否拥有SGID权限

-u FILE:文件是否拥有SUID权限

-k FILE:文件是否拥有sticky权限

[root@:vg_adn_tidbCkhsTest /tmp]#[ -u /usr/bin/passwd ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

文件大小测试

-s FILE :文件是否为非空内容,有内容则为真,无内容则为假

[root@:vg_adn_tidbCkhsTest /tmp]#touch ./haha.sh
[root@:vg_adn_tidbCkhsTest /tmp]#[ -s haha.sh ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1
[root@:vg_adn_tidbCkhsTest /tmp]#echo "hahahaha" > haha.sh
[root@:vg_adn_tidbCkhsTest /tmp]#[ -s haha.sh ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0

从属关系测试

-O FILE:当前有效用户是否为文件属主

-G FILE:当前有效用户是否为文件属组

[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
0
[root@:vg_adn_tidbCkhsTest /tmp]#[ -O /home/tidb ]
[root@:vg_adn_tidbCkhsTest /tmp]#echo $?
1

组合条件运算

[ condition1 -a condition2 ]    相当于  condition1  &&  condition2

[ condition1 -o condition2 ]    相当于  condition1  ||  condition2

[ -not condition ]  相当于  !condition

练习题:判断主机名是否为空或主机名是“localhost.localdomain”

#!/bin/bash
hostName=$(hostname)
[ -z "$hostName" ] || [[ $hostName == "localhost.localdomain" ]] #这一句相当于: [ -n "$hostName" -o $hostName == "localhost.localdomain" ]
if [ $? -eq 0 ];then
hostname www.feng.com
fi

脚本的状态返回值

默认是脚本中执行的最后一条命令的状态返回值

自定义状态退出状态码:

exit [n]:n为自己指定的状态码。

注意L:shell进程遇到exit时,即会终止,因此,整个脚本执行即为结束。

向脚本传递参数:

位置参数变量

Scripts.sh arg1  arg2

引用方式:

$1,$2,......${n}..

[root@:vg_adn_tidbCkhsTest /tmp]#cat test4.sh
#!/bin/bash
file1_lines=$(grep '^$' $1 | wc -l)
file2_lines=$(grep '^$' $2 | wc -l)
echo "the totle lines: $[${file1_lines} + ${file2_lines}]"
[root@:vg_adn_tidbCkhsTest /tmp]#bash test4.sh /etc/init.d/functions /etc/issue
the totle lines: 91

特殊变量:

$0:脚本文件路径本身

$#:保存传递给当前脚本的参数的个数。

$*与$@:保存传递给当前脚本的所有参数。

[root@:vg_adn_tidbCkhsTest /tmp]#cat test5.sh
#!/bin/bash
echo "the name of scripts is $(basename $0)"
echo "the arg's sum is $#"
echo "some names are $*"
[root@:vg_adn_tidbCkhsTest /tmp]#./test5.sh 1.txt 2.txt
the name of scripts is test5.sh
the arg's sum is 2
some names are 1.txt 2.txt

练习题:编写一个脚本,用来添加一个用户,要求必须指定一个用户

[root@:vg_adn_tidbCkhsTest /tmp]#cat test6.sh
#!/bin/bash
if [ $# -lt 1 ];then
echo "At least one user";
   exit 2
fi
if grep "^$1\>" /etc/passwd &> /dev/null;then
echo "user has been exits"
else
useradd $1
echo $1 | passwd --stdin $1 &> /dev/null
echo "useradd finished"
fi
[root@:vg_adn_tidbCkhsTest /tmp]#./test6.sh hbase
useradd finished
[root@:vg_adn_tidbCkhsTest /tmp]#./test6.sh hbase
user has been exits
[root@:vg_adn_tidbCkhsTest /tmp]#

练习题:通过命令行参数给定两个数字,输出其中较大的数值

[root@:vg_adn_tidbCkhsTest /tmp]#cat test7.sh
#!/bin/bash
if [ $# -lt 2 ];then
echo "At least two numbers"
exit 2
fi
if [ $1 -lt $2 ];then
echo "The max num is $2"
else
echo "The max num is $1"
fi
[root@:vg_adn_tidbCkhsTest /tmp]#./test7.sh 3
At least two numbers
[root@:vg_adn_tidbCkhsTest /tmp]#./test7.sh 3 5
The max num is 5
[root@:vg_adn_tidbCkhsTest /tmp]#./test7.sh 7 5
The max num is 7

练习题:通过命令行参数给定一个用户名,判断其ID号时偶数还是奇数

[root@:vg_adn_tidbCkhsTest /tmp]#cat test8.sh
#!/bin/bash
if [ $# -lt 1 ];then
echo "At least one user"
exit 2
fi
if ! grep "^$1\>" /etc/passwd &> /dev/null ;then
echo "user not exits"
else
uuid=`id -u $1`
if [ $uuid%2==0 ];then
echo "this uuid is a ji shu"
else
echo "this uuid is a ou shu"
fi
fi
[root@:vg_adn_tidbCkhsTest /tmp]#./test8.sh hbase
this uuid is a ji shu

Linux运维之shell脚本基础知识的更多相关文章

  1. linux运维自动化shell脚本小工具

    linux运维shell 脚本小工具,如要分享此文章,请注明文章出处,以下脚本仅供参考,若放置在服务器上出错,后果请自负 1.检测cpu剩余百分比 #!/bin/bash #Inspect CPU # ...

  2. linux运维需要掌握的基础知识

    踏入linux运维工程师这一职业,其实有很多工具技能需要掌握,下面我来给大家一一介绍. 1.shell脚本和另一个脚本语言,shell是运维人员必须具备的,不懂这个连入职都不行,至少也要写出一些系统管 ...

  3. Linux运维之shell脚本进阶篇

    一.if语句的使用 1)语法规则 if [条件] then 指令 fi 或 if [条件];then 指令 fi 提示:分号相当于命令换行,上面两种语法等同特殊写法:if[ -f"$file ...

  4. Linux运维之shell脚本

    一.bash漏洞 1)bash漏洞 bash漏洞是控制Linux计算机命令提示符的软件中存在的漏洞. bash是一个为GNU计划编写的Unix shell.它的名字是一系列缩写:Bourne-Agai ...

  5. CentOS 下运维自动化 Shell 脚本之 expect

    CentOS 下运维自动化 Shell脚本之expect 一.预备知识: 1.在 Terminal 中反斜杠,即 "" 代表转义符,或称逃脱符.("echo -e与pri ...

  6. 什么是Shell?Shell脚本基础知识详细介绍

    这篇文章主要介绍了什么是Shell?Shell脚本基础知识介绍,本文是一篇Shell脚本入门文章,在本文你可学到什么是Shell.有多少种Shell.一个Shell脚本代码实例,需要的朋友可以参考下 ...

  7. Linux运维七:网络基础

    1:网线 2:交换机,路由器 交换机(Switch)意为“开关”是一种用于电(光)信号转发的网络设备.它可以为接入交换机的任意两个网络节点提供独享的电信号通路.最常见的交换机是以太网交换机.其他常见的 ...

  8. Shell脚本基础知识详细介绍(一)

    Shell本身是一个用C语言编写的程序,它是用户使用Linux的桥梁.Shell既是一种命令语言,又是一种程序设计语言.作为命令语言,它交互式地解释和执行用户输入的命令:作为程序设计语言,它定义了各种 ...

  9. shell脚本基础知识

    虽然现在能在Linux系统下生存,但是自觉效率太低,和高手有很大的差距. 这就是关于Linux的知识太过匮乏,有很多事情知道该怎么做,但是就是没法在Linux下实现,为了提升工作效率,必须要接触Lin ...

随机推荐

  1. [Golang] GOROOT、GOPATH和Project目录说明

    go env环境查看 用go env 可查看当前go环境变量. $ go env GOARCH="amd64" GOBIN="" GOEXE="&qu ...

  2. UEFI+GPT与BIOS+MBR各自有什么优缺点?

    1.分区数量上,gpt好像可以支持无限个分区,不过window上只认128个,而且gpt分区不分主分区,逻辑分区,可以理解为全部都是主分区,就相当于可以允许你一个分区一个系统,128个系统了.而这是m ...

  3. SQL SERVER中LIKE使用变量类型输出结果不同

    前言:Sql Server中LIKE里面使用不同的变量类型导致查询结果不一致的问题,其实看似有点让人不解的现象背后实质跟数据类型的实现有关. 一.我们先来创建示例演示具体操作 CREATE TABLE ...

  4. php json_encode在CI框架中的使用细节

    这个错误的造成原因是加载类类库,转换成json格式的时候不熟悉CI框架的规定导致的,CI框架中规定在将数据转换成json格式的时候需要将类库小写,当然了,调用的时候必须保证有这个类库,且可以在对应的文 ...

  5. 9.C#知识点:线程初识及Thread初识(一)

    知识点目录==========>传送门 线程和进程的简单概括. 1.进程就是"活动中"的程序,一个.程序是一个没有生命的实体,只有处理器赋予程序生命时,它才能成为一个活动的实 ...

  6. 月赛 && SX_ACM 惨痛教训

    1.cnt变量若有多次询问,一定要记得初始化!!! 2.多组数据输出入,区泛~. 3.高性能问题,考虑位运算,

  7. JavaSE Collections类 , Iterator迭代器 , 增强for循环

    Collections 它是集合的工具类,为集合体系扩展了一些其他的方法.类中都是静态的方法,可以使用类名直接调用. 可变参数 在JDK1.5之后,如果我们定义一个方法需要接受多个参数,并且多个参数类 ...

  8. Mock session,cookie,querystring in ASB.NET MVC

    写测试用例的时候经常发现,所写的功能需要Http上下文的支持(session,cookie)这类的. 以下介绍2种应用场景. 用于控制器内Requet获取参数 控制器内的Requet其实是控制器内的属 ...

  9. 十分钟搞定mac下的phpstorm增加xdebug调试

    一.版本信息 mac 10.10.5 php  5.5.38 phpstorm 10.0.3 xdebug   版本需要与php匹配,匹配地址 :点我匹配  点我查看所有版本 提示:不确定xdebug ...

  10. Flask中request参数

    首先要明确一件事,Request这是个对象,不管使用PHP还是python还是什么java语言,虽然request这个对象可能叫的名字不一样,(在其他语言中可能叫什么HttpRequest),但是原理 ...