0


常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)

一. shell基础案例

1、第一个案例:helloworld

#!/bin/bashfunctionexample{echo"Hello world!"}
example

2、打印运行的python进程

#!/bin/shpidlist=`ps-aux|grep python |awk'{print $2}'`echo$pidlist

3、获取并打印参数

#!/bin/bashecho"$0$1$2$3"  // 传入三个参数
echo$#    //获取传入参数的数量
echo$@    //打印获取传入参数
echo$*    //打印获取传入参数

4、用脚本写for循环

#!/bin/bashs=0;for((i=1;i<100;i++))dos=$[$s+$i]doneecho$sr=0;a=0;b=0;for((x=1;x<9;x++))doa=$[$a+$x]echo$xdonefor((y=1;y<9;y++))dob=$[$b+$y]echo$ydoneecho$r=$[$a+$b]

5、使用C语言风格的for命令

#!/bin/bash#testing the C-style for loopfor(( i=1; i<=10; i++))doecho"The next number is $i"done

6、while循环案例

#!/bin/bashs=0i=1while[$i-le100]dos=$[$s + $i]i=$[$i + 1]doneecho$secho$i

7、使用break跳出外部循环

#!/bin/bash# break n,默认为1for(( a=1; a<=3; a++))doecho"Outer loop : $a"for(( b=1; b <100; b++))doif[$b-gt4]thenbreak2fiecho" Inner loop:$b"donedone

8、使用continue命令

#!/bin/bash#using the continue commandfor(( var1 =1; var1 <15; var1++))doif[$var1-gt5]&&[$var1-lt10]thencontinuefiecho"Iteration number:$var1"done

9、case案例

#!/bin/bash case$1in1)echo"wenmin ";;2)echo"wenxing ";;3)echo"wemchang ";;4)echo"yijun";;5)echo"sinian";;6)echo"sikeng";;7)echo"yanna";;
*)echo"danlian";;esac

10、判断两个数是否相等

num1=100num2=100iftest $[num1]-eq $[num2]thenecho'两个数相等!'elseecho'两个数不相等!'fi

11、使用双圆括号

#!/bin/bash# using double parenthesisvar1=10if(( $var1 **2>90))then(( var2 = $var1 **2))echo"The square of $var1 if $var2"fi

12、使用双方括号

#!/bin/bash# using pattern matchingif[[$USER== r* ]]thenecho"Hello $USER"elseecho"Sorry, I do not know you"fi

13、反引号的使用

#!/bin/bash#using the backtick character  会把反引号里面当作一条命令来执行testing=`date`echo"The date and time are:$testing"

14、字符串比较

#!/bin/bash#testing string equalitytestuser=tiandi

if[$USER=$testuser]thenecho"Welcome $testuser"fi

15、读取列表中的值

#!/bin/bash# basic for commandfortestin Alabama Alaska Arizona
doecho The next state is $testdone

16、打印99乘法表

#!/bin/bashforiin`seq9`doforjin`seq $i`doecho-n"$j*$i=$[i*j] "doneechodone

17、脚本编写 求和 函数运算 function xx()

#!/bin/bashfunctionsum(){s=0;s=$[$1+$2]echo$s}read-p"input your parameter " p1
read-p"input your parameter " p2

sum$p1$p2functionmulti(){r=0;r=$[$1/$2]echo$r}read-p"input your parameter " x1
read-p"input your parameter " x2

multi $x1$x2v1=1v2=2letv3=$v1+$v2echo$v3

18、用户猜数字

#!/bin/bash# 脚本生成一个 100 以内的随机数,提示用户猜数字,根据用户的输入,提示用户猜对了,# 猜小了或猜大了,直至用户猜对脚本结束。# RANDOM 为系统自带的系统变量,值为 0‐32767的随机数# 使用取余算法将随机数变为 1‐100 的随机数num=$[RANDOM%100+1]echo"$num"# 使用 read 提示用户猜数字# 使用 if 判断用户猜数字的大小关系:‐eq(等于),‐ne(不等于),‐gt(大于),‐ge(大于等于),# ‐lt(小于),‐le(小于等于)while:doread-p"计算机生成了一个 1‐100 的随机数,你猜: " cai  
    if[$cai-eq$num]thenecho"恭喜,猜对了"exitelif[$cai-gt$num]thenecho"Oops,猜大了"elseecho"Oops,猜小了"fidone

19、编写剪刀 、 石头、布游戏

#!/bin/bashgame=(石头 剪刀 布)num=$[RANDOM%3]computer=${game[$sum]}echo"请根据下列提示选择您的出拳手势"echo" 1. 石头"echo" 2. 剪刀"echo" 3. 布 "read-p"请选择 1-3 :" person
case$personin1)if[$num-eq0]thenecho"平局"elif[$num-eq1]thenecho"你赢"elseecho"计算机赢"fi;;2)if[$num-eq0]thenecho"计算机赢"elif[$num-eq1]thenecho"平局"elseecho"你赢"fi;;3)if[$num-eq0]thenecho"你赢"elif[$num-eq1]thenecho"计算机赢"elseecho"平局"fi;;
*)echo"必须输入1-3 的数字"esac

20、检测当前用户是否为管理员

#!/bin/bash# 检测本机当前用户是否为超级管理员if[$USER=="root"]thenecho"您是管理员,有权限安装软件"elseecho"您不是管理员,没有权限安装软件"fi

21、接收参数

传入参数3运行:

sh demo.sh 3

,控制台会打印:wo ai wenxing

#!/bin/bash -xvif[$1-eq2];thenecho"wo ai wenmin"elif[$1-eq3];thenecho"wo ai wenxing "elif[$1-eq4];thenecho"wo de xin "elif[$1-eq5];thenecho"wo de ai "fi

22、读取控制台传入的参数

#!/bin/bashread-t7-p"input your name " NAME
echo$NAMEread-t11-p"input you age " AGE
echo$AGEread-t15-p"input your friend " FRIEND
echo$FRIENDread-t16-p"input your love " LOVE
echo$LOVE

23、获取用户输入

#!/bin/bash# testing the reading commandecho-n"Enter your name:"read name
echo"Hello $name, welcome to my program"read-p"Please enter your age: " age
days=$[$age * 365]echo"That makes you over $days days old"#指定多个变量,输入的每个数据值都会分配给表中的下一个变量,如果用完了,就全分配各最后一个变量read-p"Please enter name:" first last
echo"Checking data for $last. $first..."#如果不指定变量,read命令就会把它收到的任何数据都放到特殊环境变量REPLY中read-p"Enter a number:"factorial=1for(( count=1; count<=$REPLY; count++))dofactorial=$[$factorial * $count]doneecho"The factorial of $REPLY is $factorial"

24、根据计算机当前时间,返回问候语

#!/bin/bash# 根据计算机当前时间,返回问候语,可以将该脚本设置为开机启动 # 00‐12 点为早晨,12‐18 点为下午,18‐24 点为晚上# 使用 date 命令获取时间后,if 判断时间的区间,确定问候语内容tm=$(date +%H)if[$tm-le12];thenmsg="Good Morning $USER"elif[$tm-gt12-a$tm-le18];thenmsg="Good Afternoon $USER"elsemsg="Good Night $USER"fiecho"当前时间是:$(date +"%Y‐%m‐%d %H:%M:%S")"echo-e"\033[34m$msg\033[0m"

二. 文件操作

1、将字符串写入到文件中

比如,将 I love cls 写入到 demo.txt 文件中

#!/bin/bashcd /home/wenmin/
touch demo.txt
echo"I love cls">>demo.txt

2、目录文件计数

#!/bin/bash# count number of files in your PATHmypath=`echo$PATH|sed's/:/ /g'`count=0fordirectoryin$mypathdocheck=`ls $directory`echo$checkforitemin$checkdocount=$(( $count +1))doneecho"$directory - $count"count=0done

3、从文件中读取数据

#!/bin/bash# reading data from a filecount=1cattest|whileread line
doecho"Line $count: $line"count=$[$count + 1]doneecho"Finished processing the file"

4、用脚本实现复制

#!/bin/bashcp$1$2

5、用脚本实现文件是否存在的判断

#!/bin/bashif[-f file.txt ];thenecho"文件存在"elseecho"文件不存在"fi

6、检查指定目录下是否有指定文件

#!/bin/bashif[-f /home/wenmin/datas ]thenecho"File exists"fi

7、脚本 每周 5 使用 tar 命令备份/var/log 下的所有日志文件

#!/bin/bash# 每周 5 使用 tar 命令备份/var/log 下的所有日志文件# vim  /root/logbak.sh# 编写备份脚本,备份后的文件名包含日期标签,防止后面的备份将前面的备份数据覆盖# 注意 date 命令需要使用反引号括起来,反引号在键盘<tab>键上面tar-czf log-`date +%Y%m%d`.tar.gz /var/log 

# crontab -e #编写计划任务,执行备份脚本
00 03 * * 5 /home/wenmin/datas/logbak.sh

8、sed文件操作

#!/bin/bash#向文件写入sed'1,2w test1' test1

echo-e"next\n"#从文件读取sed'3r ./test' ./test

echo-e"next\n"#从文件读取,并插入字符流sed'/lazy/r test'test#向数据流末尾添加数据sed'$r test'testecho-e"next1\n"sed'/lazy/ {
r test
d
}'test

三. 实用工具

1、定时执行脚本

#!/bin/bash# testing the at command

at -f4.sh 22:10

2、查看有多少ip在连接本机

#!/bin/bash# 查看有多少远程的 IP 在连接本机(不管是通过 ssh 还是 web 还是 ftp 都统计) # 使用 netstat ‐atn 可以查看本机所有连接的状态,‐a 查看所有,# -t仅显示 tcp 连接的信息,‐n 数字格式显示# Local Address(第四列是本机的 IP 和端口信息)# Foreign Address(第五列是远程主机的 IP 和端口信息)# 使用 awk 命令仅显示第 5 列数据,再显示第 1 列 IP 地址的信息# sort 可以按数字大小排序,最后使用 uniq 将多余重复的删除,并统计重复的次数netstat-atn|awk'{print $5}'|awk'{print $1}'|sort-nr|uniq-c

3、实时监控本机内存和硬盘剩余空间

剩余内存小于500M、根分区剩余空间小于1000M时,发送报警邮件给root管理员

#!/bin/bash# 实时监控本机内存和硬盘剩余空间,剩余内存小于500M、根分区剩余空间小于1000M时,发送报警邮件给root管理员# 提取根分区剩余空间disk_size=$(df / |awk'/\//{print $4}')# 提取内存剩余空空间mem_size=$(free|awk'/Mem/{print $4}')while:do# 注意内存和磁盘提取的空间大小都是以 Kb 为单位if[$disk_size-le512000-a$mem_size-le1024000]then
    mail  ‐s  "Warning"  root  <<EOF
 Insufficient resources,资源不足
EOFfidone

4、统计当前 Linux 系统中可以登录计算机的账户有多少个

#!/bin/bash# 统计当前 Linux 系统中可以登录计算机的账户有多少个#方法 1:grep"bash$" /etc/passwd |wc-l#方法 2:awk-f:'/bash$/{x++}end{print x}' /etc/passwd

5、杀掉 tomcat 进程并重新启动

#!/bin/bash#kill tomcat pidpidlist=`ps -ef|grep apache-tomcat-7.0.75|grep-v"grep"|awk'{print $2}'`#找到tomcat的PID号echo"tomcat Id list :$pidlist"  //显示pid

kill-9$pidlist#杀掉改进程echo"KILL $pidlist:" //提示进程以及被杀掉

echo"service stop success"echo"start tomcat"cd /opt/apache-tomcat-7.0.75

pwdrm-rf work/*

cd bin

./startup.sh #;tail -f ../logs/catalina.out

6、使用return命令返回函数

#!/bin/bash# using the return command in a functionfunctiondb1{read-p"Enter a value:" value
    echo"doubling the value"return $[$value * 2]}

db1
echo"The new value is $?"

7、用脚本安装memcached服务器

#!/bin/bash# 一键部署 memcached # 脚本用源码来安装 memcached 服务器# 注意:如果软件的下载链接过期了,请更新 memcached 的下载链接wget http://www.memcached.org/files/memcached-1.5.1.tar.gz
yum -yinstall gcc
tar-xf  memcached‐1.5.1.tar.gz
cd memcached‐1.5.1
./configure
makemakeinstall

8、备份MySQL数据库

#!/bin/shsource /etc/profile
dbName=mysql
tableName=db
echo[`date +'%Y-%m-%d %H:%M:%S'`]' start loading data...'
mysql -uroot-proot-P3306${dbName}-e"LOAD DATA LOCAL INFILE '# /home/wenmin/wenxing.txt' INTO TABLE ${tableName} FIELDS TERMINATED BY ';'"echo[`date +'%Y-%m-%d %H:%M:%S'`]' end loading data...'exit
EOF

9、一键部署 LNMP(RPM 包版本)

#!/bin/bash # 一键部署 LNMP(RPM 包版本)# 使用 yum 安装部署 LNMP,需要提前配置好 yum 源,否则该脚本会失败# 本脚本使用于 centos7.2 或 RHEL7.2
yum -yinstall httpd
yum -yinstall mariadb mariadb-devel mariadb-server
yum -yinstall php php-mysql

systemctl start httpd mariadb
systemctl enable httpd mariadb

四. 图形化操作

1、打印带颜色的棋盘

#!/bin/bash# 打印国际象棋棋盘# 设置两个变量,i 和 j,一个代表行,一个代表列,国际象棋为 8*8 棋盘# i=1 是代表准备打印第一行棋盘,第 1 行棋盘有灰色和蓝色间隔输出,总共为 8 列# i=1,j=1 代表第 1 行的第 1 列;i=2,j=3 代表第 2 行的第 3 列# 棋盘的规律是 i+j 如果是偶数,就打印蓝色色块,如果是奇数就打印灰色色块# 使用 echo ‐ne 打印色块,并且打印完成色块后不自动换行,在同一行继续输出其他色块foriin{1..8}doforjin{1..8}dosum=$[i+j]if[  $[sum%2]-eq0];thenecho-ne"\033[46m  \033[0m"elseecho-ne"\033[47m  \033[0m"fidoneechodone

2、使用msgbox部件

#!/bin/bash

dialog --title text --msgbox"This is a test"1020

3、使用菜单显示指令操作

#!/bin/bashfunctionmenu{clearechoecho-e"\t\tSys Admin Menu\n"echo-e"\t1. Display disk space"echo-e"\t2. Display logged on users"echo-e"\t3. Display memory usage"echo-e"\t0. Exit program\n\n"echo-en"\t\tEnter option:"read-n1 option
}functiondiskspace{cleardf-k}functionwhoseon{clearwho}functionmenusage{clearcat /proc/meminfo
}while[1]do
    menu
    case$optionin0)break;;1) 
        diskspace;;2)
        whoseon;;3)
        menusage;;
    *)clearecho"Sorry, wrong selection";;esacecho-en"\n\n\t\tHit any key to continue"read-n1 line
doneclear

4、在脚本中使用dialog命令

#!/bin/bash# using dialog to create a menutemp=`mktemp -t test.XXXXXX`temp2=`mktemp -t test2.XXXXXX`functiondiskspace{df-k>$temp
    dialog --textbox$temp2060}functionwhoseon{who>$temp
    dialog --textbox$temp2050}functionmenusage{cat /proc/meminfo >$temp
    dialog --textbox$temp2050}while[1]do
    dialog --menu"Sys Admin Menu"2030101"Display disk space"2"Display users"3"Display memory usage"0"Exit"2>$temp2if[$?-eq1]thenbreakfiselection=`cat $temp2`case$selectionin1)
        diskspace;;2)
        whoseon;;3)
        menusage;;0)break;;
    *)
        dialog --msgbox"Sorry,invalid selection"1030esacdonerm-f$temp2> /dev/null
rm-f$temp22> /dev/null

5、使用select命令

#!/bin/bash# using select in the menufunctiondiskspace{cleardf-k}functionwhoseon{clearwho}functionmenusage{clearcat /proc/meminfo
}PS3="Enter option:"selectoptionin"Display disk space""Display logged on users""Display memory usage""Exit program"docase$optionin"Exit program")break;;"Display disk space")
        diskspace;;"Display logged on users")
        whoseon;;"Display memory usage")
        menusage;;
    *)clearecho"Sorry, wrong selection";;esacdoneclear

五. sed操作

1、sed编辑器基础

#!/bin/bash#sed编辑器基础#替换标记sed's/lazy/ht/' ./test

echo-e"next\n"#可用的替换标记#1.数字 表明新闻本将替换第几处模式匹配的地方sed's/lazy/ht/2' ./test
#2.g 表明新文件将会替换所有已有文本出现的地方sed's/lazy/ht/g' ./test
#3.p 表明原来行的内容要打印出来,替换后的sed's/lazy/ht/p' ./test
#4.w file 将替换的结果写到文件中sed's/lazy/ht/w test1' ./test

echo-e"next\n"#替换字符sed's/\/bin\/bash/\/bin\/csh/' /etc/passwd
#或者sed's!/bin/bash!/bin/csh!' /etc/passwd

echo-e"next\n"#使用地址#1.数字方式的行寻址sed'2s/lazy/cat/' ./test
sed'2,3s/lazy/cat/' ./test
sed'2,$s/lazy/cat/' ./test
#2.使用文本模式过滤器sed'/tiandi/s/bash/csh/' /etc/passwd

echo-e"next\n"#组合命令sed'2{
s/fox/elephant/
s/dog/cat/
}'testsed'2,${
s/fox/elephant/
s/dog/cat/
}'testecho-e"next\n"#删除行sed'3d' ./test
sed'2,$d' ./test
sed'/number 1/d' ./test
#删除两个文本模式来删除某个范围的行,第一个开启删除功能,第二个关闭删除功能sed'/1/,/3/d' ./test

echo-e"next\n"#插入和附加文本sed'3i\
This is an appended line.' ./test

sed'$a\
This is a new line of text.' ./test

#修改行sed'3c\
This a changed line of text.' ./test
sed'/number 1/c\
This a changed line of text.' ./test
#替换两行文本#sed '2,3c\#This a changed line of text.' ./test#转换命令,处理单个字符#sed 'y/123/789/' ./testecho-e"next\n"#回顾打印# p 打印文本行# -n 禁止其他行,只打印包含匹配文本模式的行sed-n'/number 3/p' ./test

#查看修改之前的行和修改之后的行#sed -n '/3/{#p#s/line/test/p#}' ./testecho-e"next\n"# 打印行号sed'=' ./test

#打印指定的行和行号#sed -n '/lazy/{#=#p#}' ./test#列出行 打印数据流中的文本和不可打印的ASCII字符,任何不可打印的字符都用它们的八进制值前加一个反斜线或标准C风格的命名法,比如用\t来代表制表符sed-n'l' ./test

2、输出末尾指定行数的数据

#!/bin/bash#输出末尾10行数据sed'{
:start
$q
N
11,$D
b start
}' /etc/passwd

3、删除指定的空白行和删除html标签

#!/bin/bash#多个空格只保留一个#sed '/./,/^$/!d' test#删除开头的空白行#sed '/./,$!d' test#删除结尾的空白行sed'{
:start
/^\n*$/{$d; N; b start}
}'test#删除html标签#有问题#s/<.*>//g#sed 's/<[^>]*>//g' test1#sed 's/<[^>]*>//g;/^$/d' test1

4、模式替代

#!/bin/bash#and符号,代表替换命令中的匹配模式,不管预定义模式是什么文本,都可以用and符号替换,and符号会提取匹配替换命令中指定替换模式中的所有字符串echo"The cat sleeps in his hat"|sed's/.at/"&"/g'#替换单独的单词echo"The System Administrator manual"|sed's/\(System\) Administrator/\1 user/'#在长数字中插入逗号echo"1234567"|sed'{:start; s/\(.*[0-9]\)\([0-9]\{3\}\)/\1,\2/; t start}'

六. gawk操作

1、使用变量

#!/bin/bash#使用内建变量# NF 当前记录的字段个数# NR 到目前为止读的记录数量#下面的程序在每行开头输出行号,并在最后输出文件的总字段数gawk'{ total+=NF; print NR, $0 }END{ print "Total: ", total}'gawk'BEGIN {testing="This is a test";  print testing; testing=45;  print testing}'#处理数字值gawk'BEGIN{x=4; x= x*2+3; printx}'#处理数组gawk'BEGIN{capital["Ill"] = "SprintField"; print capital["Ill"]}'#遍历数组变量gawk'BEGIN{
var["a"] = 1
var["g"] = 2
var["m"] = 3
for( test in var)
{
    print "Index:",test,"- Value:",var[test]
}
}'

print "------"#删除数组变量gawk'BEGIN{
var["a"] = 1
var["g"] = 2
for (test in var)
{
    print "Index:",test," - Value:", var[test]
}
delete var["g"]

print "----"

for (test in var)
{
    print "Index;",test," - Value:", var[test]
}
}'

2、使用模式,结构化命令

#!/bin/bash#正则表达式gawk'BEGIN{FS=","} 
/11/{print $1}
'test#if-else语句gawk'{
if($1 > 20)
{
    x=$1*20
    print x
}
else
{
    x=$1/2
    print x
}
}'test#while 语句gawk'{
total = 0
i=1
while(i<4)
{
    total+=$i
    i++
}
avg = total/3
print "Average:".avg
}'test#do-while语句gawk'{
total=0
i=1
do
{
    total += $i
    i++
}while(total < 150)
print total }'test#for语句gawk'{
total = 0
for (i=1; i<4; i++)
{
    total+=$i
}
avg = total/3
print "Average:".avg
}'test

3、自定义函数

#!/bin/bash#gawk 自定义函数gawk'
function myprint()
{
    printf "%-16s - %s\n", $1, $4
}
BEGIN{FS="\n"; RS=""}
{
    myprint()
}'test

4、调用函数库和脚本

#!/bin/bash#使用函数库和gawk脚本gawk-f gawk函数库 -f gawk脚本 test

5、输出

#!/bin/bash#print用于产生简单输出#多个表达式的字符串值之间用输出字段分隔符分开gawk'{ print $1, $2 }'#输出字段分割符与输出记录分隔符存储在内建变量OFS与ORS中,#初始情况下,OFS与ORS被设置成一个空格符与一个换行符,但它们的值可以在任何时候改变#下面这个程序打印每一行的第1第2个字段,字段之间用分号分开,在每一行的第2个字段之后输出两个换行符gawk'BEGIN { OFS = ":"; ORS = "\n\n" }
      { print $1, $2 }'#下面这个程序拼接第1个与第2个字段,两个字段之间没有输出字段分隔符插入gawk'{ print $1 $2 }'#这两句话等价gawk'{ print }'gawk'{ print $0 }'#输出空行gawk'{ print "" }'#printf用于产生格式化输出#printf不会自动换行,需要手动添加\n#格式说明符以%开始,以转换字符结束# - 表达式在它的域内左对齐,没有则右对齐# width 为了达到规定的宽度,必要时填充空格# .prec 字符串最大宽度, 或十进制数的小数部分的位数gawk'{ printf ("Name:%-10sAge:%-5dWeight:%7.2f\n", $1, $2, $3) }'#输出到文件#重定向运算符>与>>用于将输出重定向到文件,文件名必须用双引号括起来#下面这个程序将所有输入行的第1个与第3个字段输出到两个文件中:如果第3个字段大于100,则输出到bigpop,否则输出到smallpopgawk'{ print($1, $3) > ($3 > 100 ? "bigpop" : "smallpop") }'#输出到管道#print的输出将以管道的方式传递给command# Canada 3852# China 3705# USA 3615# Brazil 3286gawk'{ pop[$1]+=$2 }
END{ for(c in pop) printf("%15-s%6d\n", c, pop[c]) | "sort -nk 2"; close("sort -nk 2") }'#关闭文件与管道#语句close(expression)关闭一个文件或管道,文件或管道由expression指定。#expression的字符串值必须与最初用于创建文件或管道的字符串值相同。#在同一个程序中,如果你写了一个文件,而待会儿想要读取它,那么就需要调用close。#某一时刻,同时处于打开状态的文件或管道数量最大值由实现定义。

close("sort -nk 2")
标签: linux 运维 shell

本文转载自: https://blog.csdn.net/cui_yonghua/article/details/131673690
版权归原作者 数据知道 所有, 如有侵权,请联系我们删除。

“常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)”的评论:

还没有评论