Linux shell 学习

Shell脚本

1)默认shell类型

[root@shell ~]#

[root@shell ~]# echo $SHELL        #查看默认的shell类型

/bin/bash

[root@shell ~]#


2)[endif]shell脚本格式

#!/bin/bash                     #此部分为固定的脚本声明格式


# abcdef12345……          #这部分内容可以自己定义,为注释内容


ls -l                      #这部分内容为脚本内容  

df -h

Pwd



案例1:构建一个非常简单的shell脚本

[root@shell ~]#

[root@shell ~]# vi script1             #建立第一个测试脚本

[root@shell ~]#

[root@shell ~]# cat script1            #查看测试脚本1中的内容

#!/bin/bash

#this is test script-1

pwd

ls -l


[root@shell ~]#

[root@shell ~]# bash  script1        #执行脚本

/root

total 9564

-rw-r--r--  1 root root       0 Jul  4 23:13 001.txt

-rw-r--r--  1 root root       8 Jul  5 08:05 0705

-rw-r--r--  1 root root      52 Jul  5 08:10 0706

-rw-r--r--  1 root root       2 Jul  4 07:27 1.txt

-rw-r--r--  1 root root       2 Jul  4 07:27 2.txt

-rw-------. 1 root root    1529 Jun 26 17:28 anaconda-ks.cfg

-rw-r--r--  1 root root 9758445 Jul  4 09:03 etc.tar.gz

-rw-r--r--  1 root root      46 Jul  8 10:33 script1

-rw-r--r--. 1 root root      78 Jun 29 11:42 sed.txt

-rw-r--r--. 1 root root     618 Jun 28 09:37 test.txt

[root@shell ~]#



[if !supportLists]3)[endif]shell脚本说明

脚本可以接受用户输入的参数;

脚本可以根据用户输入的参数,进行判断

$0 :脚本的名称

$# :总共接收到的参数个数

$* :分别接收到的参数内容是什么

$1,$2,$3 :表示第1,2,3个接收到的参数是什么


[root@shell ~]#

[root@shell ~]# vi script2         #新建脚本文件

[root@shell ~]#

[root@shell ~]# cat script2

!#/bin/bash

# this is test-2 script

echo "$0"

echo "$#,$*"

echo "$1,$3,$5"


[root@shell ~]#

[root@shell ~]# bash  script2 a b c d e f g     #执行脚本

script2: line 1: !#/bin/bash: No such file or directory

script2

7,a b c d e f g

a,c,e

[root@shell ~]#



测试语句

[root@shell ~]#

[root@shell ~]# [ -d /etc ]       #判断 /etc是否为目录

[root@shell ~]#

[root@shell ~]# echo $?    #判断上一条测试命令是否执行成功,0代表成功

0

[root@shell ~]#

[root@shell ~]# [ -f /etc ]     #判断/etc是否为普通文件

[root@shell ~]# echo $?       # /etc为目录,不是普通文件

1

[root@shell ~]#


&&(逻辑与) :当上一条语句执行成功,则会执行后面的语句

||(逻辑或) :当上一条语句执行失败,则会执行后面的语句

!(逻辑非):对判断值取反,若判断成功则结果变成失败,反之亦然



[root@shell ~]#

[root@shell ~]# [ 5 > 3 ]     #判断5是否大于3

[root@shell ~]# echo $?

0

[root@shell ~]#

[root@shell ~]# [ -f /etc/fstab ]     #判断fstab是否为普通文件

[root@shell ~]# echo $?

0

[root@shell ~]#

[root@shell ~]#

[root@shell ~]# [ -r /etc/fstab ]    #判断用户对fstab是否有可读权限

[root@shell ~]# echo $?             #为0证明有可读权限

0

[root@shell ~]#

[root@shell ~]#

[root@shell ~]# [ -e /etc/my.cnf ]    #判断my.cnf该文件是否存在

[root@shell ~]# echo $?              #为0证明存在

0

[root@shell ~]#

[root@shell ~]# [ -e /etc/test ]    #判断test该文件是否存在

[root@shell ~]# echo $?          #为1证明不存在

1

[root@shell ~]#

[root@shell ~]#

[root@shell ~]# [ -f /etc/my.cnf ] && echo "存在"    #若my.cnf存在的话,则将结果“存在”打印出来


存在

[root@shell ~]#

[root@shell ~]#

[root@shell ~]# [ -f /etc/test ] || echo "不存在"     #若my.cnf不存在的话,则将结果“不存在”打印出来


不存在

[root@shell ~]#

[root@shell ~]#

[root@shell ~]# [ ! -e /etc/my.cnf ]    #判断my.cnf该文件是否不存在

[root@shell ~]# echo $?

1

[root@shell ~]#

[root@shell ~]#

[root@shell ~]# echo $USER        #查看当前登录用户是谁

root

[root@shell ~]#

[root@shell ~]# [ $USER=root ]       #判断当前登录用户是root

[root@shell ~]# echo $?             #0代表当前用户是root

0

[root@shell ~]#

[root@shell ~]# [ ! $USER=root ]    #判断当前登录用户不是root

[root@shell ~]# echo $?           #1代表判断错误

1

[root@shell ~]#


-ge :是否大于等于

[root@shell ~]#

[root@shell ~]# [ 5 -ge 3 ]          #判断5是否大于等于3

[root@shell ~]# echo $?

0

[root@shell ~]#


-eq :是否等于

[root@shell ~]#

[root@shell ~]# [ 1 -eq 1 ]        #判断1是否等于1

[root@shell ~]# echo $?

0

[root@shell ~]#


lt :是否小于

[root@shell ~]#

[root@shell ~]# [ `free -m | grep Mem: | awk '{print $4}'` -lt 1024 ] && echo "memery not enough" || echo "memery is enough"        #判断系统当前内存是否小于1G,如果小于1G的话则输出“内存不足”如果大于1G的话则输出“内存充足”


memery not enough

[root@shell ~]#



if 条件测试语句

[root@shell ~]#

[root@shell ~]# vim script1         #创建脚本1

[root@shell ~]# cat script1       #查看脚本内容

#!/bin/bash

if [ ! -e /root/test ]

then

mkdir /root/test

fi

[root@shell ~]#

[root@shell ~]# ls /root/test      #查看test文件是否存在

ls: cannot access /root/test: No such file or directory

[root@shell ~]#

[root@shell ~]# bash script1         #执行脚本

[root@shell ~]# ls /root/test/

[root@shell ~]#

[root@shell ~]# ls /root/test      #再次查看test文件是否存在

[root@shell ~]#



/dev/null :系统中的黑洞文件,所以放入该目录内的文件都将被系统删除,相当于Linux的垃圾箱或者回收站一样


[root@shell ~]#

[root@shell ~]# vim script2       #创建脚本2

[root@shell ~]#

[root@shell ~]# cat script2      #查看脚本内容

#!/bin/bash

ping -c 3 -i 0.2 -W 3 $1 &> /dev/null

if [ $? -eq 0 ]

then

echo "host $1 is on-line"

else

echo "host $1 is off-line"

fi


[root@shell ~]#

[root@shell ~]# ip a | grep 192.168.       #查看当前主机的IP

    inet 192.168.11.128/24 brd 192.168.11.255 scope global dynamic ens33

[root@shell ~]#

[root@shell ~]# bash script2 192.168.11.128      #执行脚本2

host 192.168.11.128 is on-line               #为在线状态

[root@shell ~]#

[root@shell ~]# bash script2 10.0.3.2    #随便输入一个地址显示不在线

host 10.0.3.2 is off-line

[root@shell ~]#


注释:$1为第一个变量的值,bash script2后面的IP地址





[root@shell ~]#

[root@shell ~]# vim  script3        #创建脚本3

[root@shell ~]# cat script3     #查看脚本3内容

#!/bin/bash

read -p "Enter:" GRADE

if [ $GRADE -ge 85 ] && [ $GRADE -le 100 ]

then

echo "$GRADE is good"

elif [ $GRADE -ge 60 ] && [ $GRADE -le 84 ]

then

echo "$GRADE is pass"

else

echo "$GRADE is fail"

fi


[root@shell ~]#

root@shell ~]#

[root@shell ~]# bash script3      #执行脚本3

Enter:99

99 is good

[root@shell ~]#

[root@shell ~]# bash script3      #执行脚本3

Enter:65

65 is pass

[root@shell ~]#

[root@shell ~]# bash script3    #执行脚本3

Enter:49

49 is fail

[root@shell ~]#



for循环语句

[root@shell ~]#

[root@shell ~]# vi /users.txt      #创建文本文件

[root@shell ~]# cat users.txt

zhangsan

wangwu

zhaoliu


[root@shell ~]#

[root@shell ~]# vim script4        #创建脚本4

[root@shell ~]#

[root@shell ~]# cat script4     #查看脚本4的内容

#!/bin/bash

read -p "Enter:" PASSWD

for UNAME in `cat users.txt`

do

id $UNAME &> /dev/null

if [ $? -eq 0 ]

then

echo "already exists"

else

useradd $UNAME &> /dev/null

echo "PASSWD" | passwd --stdin $UNAME &> /dev/null

if [ $? -eq 0 ]

then

echo "$UNAME,create success"

else

echo "$UNAME,create failure"

fi

fi

done


[root@shell ~]#

[root@shell ~]# bash script4         #执行脚本

Enter:redhat

zhangsan,create success

wangwu,create success

zhaoliu,create success

[root@shell ~]#



检测主机存活率

[root@shell ~]#

[root@shell ~]# vi host.txt       #先创建一个主机文件

[root@shell ~]# cat host.txt     #查看文件信息

192.168.11.128

123.456.20.5

92.8.60.32

10.5.23.8

127.0.0.1


[root@shell ~]#

[root@shell ~]#

[root@shell ~]# vim script5        #创建脚本5

[root@shell ~]# cat script5    #查看脚本内容

#!/bin/bash

for IP in `cat host.txt`

do

ping -c 3 -i 0.2 -W 3 $IP >& /dev/null

if [ $? -eq 0 ]

then

echo "$IP is on-line"

else

echo "$IP is off-line"

fi

done


[root@shell ~]#

[root@shell ~]# bash script5         #执行脚本5

192.168.11.128 is on-line

123.456.20.5 is off-line

92.8.60.32 is off-line

10.5.23.8 is off-line

127.0.0.1 is on-line

[root@shell ~]#



for循环语句按照某个范围来循环;

where循环语句按照某个条件来循环



case语句

匹配数字或者字母

[root@shell ~]#

[root@shell ~]# vim script6       #创建脚本6

[root@shell ~]#

[root@shell ~]# cat script6    #查看脚本内容

#!/bin/bash

read -p "Enter:" CTSI

case "$CTSI" in

[a-z]|[A-Z])

echo "字母"

;;

[0-9])

echo "数字"

;;

*)

echo "乱码"

;;

esac


[root@shell ~]#

[root@shell ~]# bash script6      #执行脚本6

Enter:6

数字

[root@shell ~]#

[root@shell ~]# bash script6

Enter:s

字母

[root@shell ~]#

[root@shell ~]# bash script6

Enter:&

乱码

[root@shell ~]#

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,287评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,346评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,277评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,132评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,147评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,106评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,019评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,862评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,301评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,521评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,682评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,405评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,996评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,651评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,803评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,674评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,563评论 2 352