Shell脚本基础

本文详细讲解了Shell脚本中变量的使用,包括特殊变量如$n、$#和*的区别,以及条件判断和流程控制(如if、case和for)的实例。此外,还介绍了常用的Shell工具如cut、sed、awk和sort,以及处理常见问题的方法,如检查文件存在性和空行行号计算。
摘要由CSDN通过智能技术生成

由里到外:硬件 - linux内核 - shell(cd、ls…) - 外层应用程序;

Shell解析器

1、linux提供的shell解析器:

$ cat /etc/shells 

/bin/sh
/bin/bash
/sbin/nologin
/bin/dash
/bin/tcsh
/bin/csh

2、bash和sh的关系

$ cd /bin/
$ ll | grep bash

-rwxr-xr-x. 1 root root 941880 511 2016 bash
lrwxrwxrwx. 1 root root      4 527 2017 sh -> bash

3、Centos默认的解析器:bash

$ echo $SHELL

/bin/bash

Shell脚本

1、脚本格式

脚本以 #!/bin/bash 开头,指定解析器

2、需求:创建shell脚本,输出helloworld


$ touch helloworld.sh
$ vi helloworld.sh

在helloworld.sh中输入如下内容
#! /bin/bash
echo "helloworld test"

脚本执行方式:

第一种:
采用bash或sh+脚本的相对路径或绝对路径(不用赋予脚本+x权限)
$ sh helloworld.sh 
$ bash helloworld.sh

第二种:
采用输入脚本的绝对路径或相对路径执行脚本(必须具有可执行权限+x)
./helloworld.sh
权限不够的话 
$ chmod 777 helloworld.sh

注意:

第一种执行方法,本质是bash解析器帮你执行脚本,所以脚本本身不需要执行权限。

第二种执行方法,本质是脚本需要自己执行,所以需要执行权限。

3、多行命令处理

(1)需求:

在/home/test/目录下创建一个test.txt,在test.txt文件中增加“I love shell”。

$ touch batch.sh
$ vi batch.sh

在batch.sh中输入如下内容
#!/bin/bash

cd /home/test
touch test.txt
echo "I love shell" >>cls.txt

Shell变量

1、常用系统变量

H O M E 、 HOME、 HOMEPWD、 S H E L L 、 SHELL、 SHELLUSER等

查看变量:

$ echo $HOME
$ echo $PWD
...

2、自定义变量

1.基本语法
(1)定义变量: 变量=值 
(2)撤销变量: unset 变量
(3)声明静态变量: readonly 变量,注意:不能 unset

2.变量定义规则
(1)变量名称可以由字母、数字和下划线组成,但是不能以数字开头,环境变量名建议大写。
(2)等号两侧不能有空格!
(3)在 bash 中,变量默认类型都是字符串类型,无法直接进行数值运算。
(4)变量的值如果有空格,需要使用双引号或单引号括起来。

(1)定义变量A

$ A=5
$ echo $A
5

(2)给变量A重新赋值

$ A=8
$ echo $A
8

(3)撤销变量A

$ unset A
$ echo $A

(4)声明静态的变量B=2,不能unset

$ readonly B=2
$ echo $B
2
B=9
-bash: B: readonly variable

(5)在bash中,变量默认类型都是字符串类型,无法直接进行数值运算

$ C=1+2
$ echo $C
1+2

(6)变量的值如果有空格,需要使用双引号或单引号括起来

$ D=I love shell
-bash: world: command not found

$ D="I love shell"
$ echo $D
I love shell

(7)可把变量提升为全局环境变量,可供其他Shell程序使用

export 变量名

$ echo $D
I love shell
---

./helloworld.sh
helloworld shell

---
$ vim helloworld.sh 

在helloworld.sh文件中增加echo $D

#!/bin/bash

echo "helloworld"
echo $D

---

$ ./helloworld.sh 
Helloworld
发现并没有打印输出变量D的值。

---

export D
$ ./helloworld.sh 
helloworld
I love shell


特殊变量:$n

1.基本语法

​ $n (功能描述:n为数字,$0代表该脚本名称,$1- 9 代 表 第 一 到 第 九 个 参 数 , 十 以 上 的 参 数 , 十 以 上 的 参 数 需 要 用 大 括 号 包 含 , 如 9代表第一到第九个参数,十以上的参数,十以上的参数需要用大括号包含,如 9{10})

2.案例实操
(1)输出该脚本文件名称、输入参数1和输入参数2 的值


[atguigu@hadoop101 datas]$ touch parameter.sh 
[atguigu@hadoop101 datas]$ vim parameter.sh

#!/bin/bash
echo "$0 $1 $2"

---

$ chmod 777 parameter.sh
$ ./parameter.sh AA BB
./parameter.sh AA BB

特殊变量:$#

1.基本语法
$# (功能描述:获取所有输入参数个数,常用于循环)。

$ vim parameter.sh

#!/bin/bash
echo "$0 $1 $2"
echo $#

---
$ chmod 777 parameter.sh

[atguigu@hadoop101 datas]$ ./parameter.sh AA BB
parameter.sh AA BB
2

特殊变量: ∗ 、 *、 @

1.基本语法

∗ ( 功 能 描 述 : 这 个 变 量 代 表 命 令 行 中 所 有 的 参 数 , * (功能描述:这个变量代表命令行中所有的参数, *把所有的参数看成一个整体)

@ ( 功 能 描 述 : 这 个 变 量 也 代 表 命 令 行 中 所 有 的 参 数 , 不 过 @ (功能描述:这个变量也代表命令行中所有的参数,不过 @@把每个参数区分对待)

2.案例实操
(1)打印输入的所有参数

$ vim parameter.sh

#!/bin/bash
echo "$0 $1 $2"
echo $#
echo $*
echo $@

---
$ bash parameter.sh 1 2 3
parameter.sh 1 2
3
1 2 3
1 2 3

特殊变量:$?

1.基本语法
$? (功能描述:最后一次执行的命令的返回状态。如果这个变量的值为0,证明上一个命令正确执行;如果这个变量的值为非0(具体是哪个数,由命令自己来决定),则证明上一个命令执行不正确了。)

2.案例实操

​ (1)判断helloworld.sh脚本是否正确执行

$ ./helloworld.sh 
hello world

$ echo $?
0

运算符

1.基本语法

(1)“ $((运算式)) ”或“ $[运算式] ”

(2)expr + , - , *, /, % 加,减,乘,除,取余

注意:expr运算符间要有空格

案例实操:

(1)计算3+2的值

$ expr 2 + 3
5

(2)计算3-2的值

$ expr 3 - 2 
1

(3)计算(2+3)* 4的值

(a)expr一步完成计算

$ expr `expr 2 + 3` \* 4
20

(b)采用 $[运算式] 方式

S=$[(2+3)*4]
echo $S

条件判断

1、基本语法

[ condition ](注意condition前后要有空格)

注意:条件非空即为true,[ abc ]返回true,[] 返回false。

2、常用判断条件

(1)两个整数之间比较

= 字符串比较

-lt 小于(less than)			
-le 小于等于(less equal)

-eq 等于(equal)				
-gt 大于(greater than)

-ge 大于等于(greater equal)	
-ne 不等于(Not equal)

(2)按照文件权限进行判断

-r 有读的权限(read)			
-w 有写的权限(write)
-x 有执行的权限(execute)

(3)按照文件类型进行判断

-f 文件存在并且是一个常规的文件(file)
-e 文件存在(existence)		
-d 文件存在并是一个目录(directory)

3、案例实操

​ (1)23是否大于等于22

$ [ 23 -ge 22 ]
$ echo $?
0

(2)helloworld.sh是否具有写权限

$ [ -w helloworld.sh ]
$ echo $?
0

(3)/home/test/test.txt目录中的文件是否存在

$ [ -e /home/test/test.txt ]
$ echo $?
1

(4)多条件判断(&& 表示前一条命令执行成功时,才执行后一条命令,|| 表示上一条命令执行失败后,才执行下一条命令)

&& echo OK || echo notok
OK

$ [ condition ] && [ ] || echo notok
notok

流程控制(重点)

if 判断

1.基本语法

if [ 条件判断式 ];then 
	程序
fi

或者

if [ 条件判断式 ] 
then 
	程序
fi	

注意事项:

(1)[ 条件判断式 ],中括号和条件判断式之间必须有空格

(2)if后要有空格

案例实操

(1)输入一个数字,如果是1,则输出 print 1,如果是2,则输出 print 2 ,如果是其它,什么也不输出。

$ touch if.sh
$ vim if.sh


#!/bin/bash

if [ $1 -eq "1" ]
then
	echo "print 1"
elif [ $1 -eq "2" ]
then
	echo "print 2"
fi

$ chmod 777 if.sh 
$ ./if.sh 1

case 语句

1.基本语法

case $变量名 in 
"值1") 
如果变量的值等于值1,则执行程序1 
;; 
"值2") 
如果变量的值等于值2,则执行程序2 
;; 
…省略其他分支… 
*) 
如果变量的值都不是以上的值,则执行此程序 
;;
esac

$ chmod 777 case.sh
$ ./case.sh 1
1

for 循环

1、基本语法1

for (( 初始值;循环控制条件;变量变化 )) 
do 
	程序 
done

案例实操

(1)从1加到100

$ touch for1.sh
$ vim for1.sh


#!/bin/bash

s=0
for((i=0;i<=100;i++))
do
	s=$[$s+$i]
done
echo $s

$ chmod 777 for1.sh 
$ ./for1.sh 
“5050”

2、基本语法2

for 变量 in 值1 值2 值3… 
do 
	程序 
done

(1)打印所有输入参数

$ touch for2.sh
$ vim for2.sh

#!/bin/bash
#打印数字

for i in $*
do
	echo "print $i "
done

$ chmod 777 for2.sh 
$ bash for2.sh aa bb cc

3、比较 ∗ 和 *和 @区别

(a) ∗ 和 *和 @都表示传递给函数或脚本的所有参数,不被双引号“”包含时,都以$1 2 … 2 … 2n的形式输出所有参数。

$ touch for.sh
$ vim for.sh


#!/bin/bash

for i in $*
do
    echo "$* print $i "
done

for j in $@
do
    echo "$@ print $j"
done

$ bash for.sh AA BB CC

(b)当它们被双引号“”包含时,“$*”会将所有的参数作为一个整体,以“$1 2 … 2 … 2n”的形式输出所有参数;“$@”会将各个参数分开,以“$1” “ 2 ” … ” 2”…” 2n”的形式输出所有参数。

$ vim for.sh

#!/bin/bash

for i in "$*"
#$*中的所有参数看成是一个整体,所以这个for循环只会循环一次
do
    echo "ban zhang love $i"
done

for j in "$@"
#$@中的每个参数都看成是独立的,所以“$@”中有几个参数,就会循环几次
do
    echo "ban zhang love $j"
done

$ chmod 777 for.sh
$ bash for.sh aa bb cc

while 循环

1.基本语法

while [ 条件判断式 ]

do
    
    程序
    
done

案例实操

​ (1)从1加到100

lyh@ubuntu:~$ touch while.sh
lyh@ubuntu:~$ vim while.sh 


#!/bin/bash
s=0
i=1
while [ $i -le 100 ]
do
    s=$[$s+$i]
    i=$[$i+1]
done

echo $s


-rw-rw-r--  1 lyh  lyh    88 Feb 15 18:33 while.sh
lyh@ubuntu:~$ bash while.sh
5050

read读取控制台输入

1.基本语法

read (选项:-p -t) (参数:变量) 

选项:

-p:指定读取值时的提示符;

-t:指定读取值时等待的时间(秒)。

参数

变量:指定读取值的变量名

案例实操

​ (1)提示7秒内,读取控制台输入的名称

lyh@ubuntu:~/test$ touch read.sh
lyh@ubuntu:~/test$ vi read.sh

#!/bin/bash

read -t 7 -p "Enter your name in 7 seconds " NAME
echo $NAME

lyh@ubuntu:~/test$ bash read.sh 
Enter your name in 7 seconds lyh
lyh

lyh@ubuntu:~/test$ bash read.sh 
Enter your name in 7 seconds 
lyh@ubuntu:~/test$ 

函数

1、系统函数

1. basename基本语法

basename [string / pathname] [suffix]

功能描述:

basename命令会删掉路径所有的前缀包括最后一个(‘/’)字符,然后将字符串显示出来。

选项:

suffix为后缀,如果suffix被指定了,basename会将pathname或string中的suffix去掉。

(1)截取该/home/lyh/test/test.txt路径的文件名称

lyh@ubuntu:~/test$ touch test.txt

yh@ubuntu:~/test$ basename /home/lyh/test/test.txt 
test.txt

lyh@ubuntu:~/test$ basename /home/lyh/test/test.txt .txt
test

2. dirname基本语法

dirname 文件绝对路径

功能描述:获取文件路径

从给定的包含绝对路径的文件名中去除文件名(非目录的部分),然后返回剩下的路径(目录的部分)

lyh@ubuntu:~/test$ dirname /home/lyh/test/test.txt 
/home/lyh/test

lyh@ubuntu:~/test$ dirname test.txt 
.

2、自定义函数

基本语法

[ function ] funname[()]
{
    Action;
    [return int;]
}
funname

(1)必须在调用函数地方之前,先声明函数,shell脚本是逐行运行。不会像其它语言一样先编译。

(2)函数返回值,只能通过 $? 系统变量获得,可以显示加:return返回,如果不加,将以最后一条命令运行结果,作为返回值。return后跟数值n(0-255)

两数相加:

lyh@ubuntu:~/test$ touch fun.sh
lyh@ubuntu:~/test$ vi fun.sh 

#!/bin/bash

function sum()
{
    s=0
    s=$[ $1 + $2 ]
    return $s
}

read -p "Please input the number1: " n1;
read -p "Please input the number2: " n2;
sum $n1 $n2;
echo $s;

lyh@ubuntu:~/test$ bash fun.sh $n1 $n2
Please input the number1: 5
Please input the number2: 6
11

Shell工具(重点)

1、cut

cut的工作就是“剪”,具体的说就是在文件中负责剪切数据用的。cut 命令从文件的每一行剪切字节、字符和字段并将这些字节、字符和字段输出。

cut [选项参数]  filename

选项参数
-f 列号,提取第几列
-d 分隔符,按照指定分隔符分割列
说明:默认分隔符是制表符

cut: 您必须指定一组字节、字符或域的列表

(0)数据准备

lyh@ubuntu:~/test$ vi test.txt
lyh@ubuntu:~/test$ cat test.txt 
AA BB CC
DD,EE,FF
GG|HH|II

(1)切割test.txt第一列

lyh@ubuntu:~/test$ cut -f 1 -d " " test.txt
AA
DD,EE,FF
GG|HH|II

(2)切割test.txt第二、三列

lyh@ubuntu:~/test$ cut -f 2,3 -d "," test.txt
AA BB CC
EE,FF
GG|HH|II

(3)在test.txt文件中切割出HH

cut: 您必须指定一组字节、字符或域的列表

lyh@ubuntu:~/test$ cat test.txt | grep "HH" | cut -f 2 -d "|"
HH

(4)选取系统PATH变量值,第2个“:”开始后的所有路径:

lyh@ubuntu:~/test$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

lyh@ubuntu:~/test$ echo $PATH | cut -d : -f 3
/usr/sbin

lyh@ubuntu:~/test$ echo $PATH | cut -d : -f 3-
/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
lyh@ubuntu:~/test$ 

2、sed

sed是一种流编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”,接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有改变,除非你使用重定向存储输出。

基本用法

sed [选项参数]  '命令'  filename

选项参数
-e	直接在指令列模式上进行sed的动作编辑。

命令
a 	新增,a的后面可以接字串,在下一行出现
d	删除
s	查找并替换 


(0)数据准备


lyh@ubuntu:~$ touch sed.txt

lyh@ubuntu:~$ vim sed.txt 
lyh@ubuntu:~$ cat sed.txt 
li lei
lei lei
xiao hong
xiao hei

(1)将“gorgeous”这个单词插入到sed.txt第二行下,打印。


lyh@ubuntu:~$ sed '2a gorgeous' sed.txt
li lei
lei lei
gorgeous
xiao hong
xiao hei

lyh@ubuntu:~$ cat sed.txt 
li lei
lei lei
xiao hong
xiao hei

注意:文件并没有改变

(2)删除sed.txt文件所有包含xiao的行


lyh@ubuntu:~$ sed '/xiao/d' sed.txt
li lei
lei lei

lyh@ubuntu:~$ cat sed.txt 
li lei
lei lei
xiao hong
xiao hei

(3)将sed.txt文件中l替换为A


lyh@ubuntu:~$ sed 's/l/A/g' sed.txt
Ai Aei
Aei Aei
xiao hong
xiao hei

lyh@ubuntu:~$ sed 's/l/A/' sed.txt
Ai lei
Aei lei
xiao hong
xiao hei

注意:‘g’表示global,全部替换

(4)将sed.txt文件中的第二行删除并将l替换为A


lyh@ubuntu:~$ sed -e '2d' -e 's/l/A/g' sed.txt 
Ai Aei
xiao hong
xiao hei

lyh@ubuntu:~$ sed '2d' 's/l/A/g' sed.txt 
sed: 无法读取 s/l/A/g: 没有那个文件或目录
li lei
xiao hong
xiao hei

3、awk

一个强大的文本分析工具,把文件逐行的读入,以空格为默认分隔符将每行切片,切开的部分再进行分析处理。


awk [选项参数] 'pattern1{action1}  pattern2{action2}...' filename

pattern:表示AWK在数据中查找的内容,就是匹配模式
action:在找到匹配内容时所执行的一系列命令

选项参数
-F  指定输入文件折分隔符
-v  赋值一个用户定义变量

(0)数据准备


lyh@ubuntu:~/test$ cp /etc/passwd ./

lyh@ubuntu:~/test$ ll
总用量 24
drwxrwxr-x  2 lyh lyh 4096 Feb 16 00:00 ./
drwxr-xr-x 16 lyh lyh 4096 Feb 15 23:22 ../
-rw-r--r--  1 lyh lyh 2801 Feb 16 00:00 passwd

lyh@ubuntu:/etc$ cat passwd
root:x:0:0:root:/root:/bin/bash
...

(1)搜索passwd文件以root关键字开头的所有行,并输出该行的第7列。

lyh@ubuntu:~/test$ awk -F : '/^root/{print $7}' passwd 
/bin/bash

(2)搜索passwd文件以root关键字开头的所有行,并输出该行的第1列和第7列,中间以“,”号分割。

lyh@ubuntu:~/test$ awk -F : '/^root/{print $1","$7}' passwd 
root,/bin/bash

注意:只有匹配了pattern的行才会执行action

(3)只显示/etc/passwd的第一列和第七列,以逗号分割,且在所有行前面添加列名beginshell在最后一行添加 endshell。


lyh@ubuntu:~/test$ awk -F : 'BEGIN{print "beginshell"}{print $1","$7}END{print "endshell"}' passwd

beginshell
root,/bin/bash
daemon,/usr/sbin/nologin
...
lyh,/bin/bash
systemd-coredump,/usr/sbin/nologin
endshell

注意:BEGIN 在所有数据读取行之前执行;END 在所有数据执行之后执行。

(4)将passwd文件中的用户id(第三列)增加数值1并输出

lyh@ubuntu:~/test$ cat passwd 
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
...

lyh@ubuntu:~/test$ awk -v i=1 -F : '{print $3+i}' passwd
1
2
3
4
...

awk的内置变量

FILENAME	文件名
NR	已读的记录数
NF	浏览记录的域的个数(切割后,列的个数)

(1)统计passwd文件名,每行的行号,每行的列数

lyh@ubuntu:~/test$ awk -F : '{print FILENAME,NR,NF}' passwd 
passwd 1 7
passwd 2 7
passwd 3 7
passwd 4 7
passwd 5 7
passwd 6 7
passwd 7 7
passwd 8 7
passwd 9 7
passwd 10 7
passwd 11 7
passwd 12 7
passwd 13 7
passwd 14 7
...

(2)查询test.txt中空行所在的行号


lyh@ubuntu:~/test$ cat test.txt 
AA BB CC
DD,EE,FF
GG|HH|II

abcd

lyh@ubuntu:~/test$ awk '/^$/{print NR}' test.txt 
4

4、sort

将文件进行排序,并将排序结果标准输出。

sort(选项)(参数)

选项:
-n	依照数值的大小排序
-r	以相反的顺序来排序
-t	设置排序时所用的分隔字符
-k	指定需要排序的列

参数:指定待排序的文件列表

(1)按照“:”分割后的第三列倒序排序。


lyh@ubuntu:~/test$ touch sort.sh
lyh@ubuntu:~/test$ vim sort.sh
lyh@ubuntu:~/test$ cat sort.sh 
AA:40:5.4
BB:20:4.2
CC:50:2.3
DD:10:3.5
EE:30:1.6

lyh@ubuntu:~/test$ sort -t : -nr -k3 sort.sh 
AA:40:5.4
BB:20:4.2
DD:10:3.5
CC:50:2.3
EE:30:1.6

常见问题:

问题1:使用Linux命令查询file1中空行所在的行号


lyh@ubuntu:~/test$ awk '/^$/{print NR}' test.txt 
4

问题2:有文件chengji.txt内容如下:

张三 40

李四 50

王五 60

使用Linux命令计算第二列的和并输出


$ cat chengji.txt | awk -F " " '{sum+=$2} END{print sum}'
150

问题3:Shell脚本里如何检查一个文件是否存在?如果不存在该如何处理?

#!/bin/bash

if [ -f file.txt ]; then
    echo "文件存在!"
else
    echo "文件不存在!"
fi
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值