shell编程-3

文章目录

  • shell学习第三天
    • while 循环
    • 第一天的小游戏
    • 练习: 编写抽同学回答问题的脚本
      • 要想让这个脚本永久有效
      • 如何知道两个文件里的内存一样?
      • 如何判断某个人已经抽过了
    • 文本处理相关命令
      • seq
      • xargs
      • uniq
      • sort
      • tr
      • cut
      • awk
      • paste
      • split
      • col
      • join
      • 小结一下
      • 作业
    • 小知识点
      • 写脚本的流程
      • 怎么统计行数
      • 怎么取出第几行的内容
      • 在shell中多行缩进
      • df -Th: 示磁盘空间使用情况
      • grep
        • 利用grep取出以什么结尾的行
        • 利用grep取出以什么开头的行

shell学习第三天

while 循环

循环就是做重复的事情

for:

  1. for i in {1…20}
  2. for i in $(seq $1)
  3. for i in $@
  4. for i in /boot/* 循环boot下的所有文件夹
[root@gh-shell 1-13]# cat for.sh 
#!/bin/bashfor i in {1..10}
domkdir -p gao$i
done#位置变量
for i in $(seq $1)
domkdir -p fei$i
done#所有的位置变量
for i in $@
domkdir -p $i
done#指定一个文件夹的路径
for i in /boot/*
doecho "sanchaung $i"
done
[root@gh-shell 1-13]# [root@gh-shell 1-13]# [root@gh-shell 1-13]# bash for.sh 3 gaohui gaofei jiang ding
sanchaung /boot/config-3.10.0-1160.el7.x86_64
sanchaung /boot/efi
sanchaung /boot/grub
sanchaung /boot/grub2
sanchaung /boot/initramfs-0-rescue-c006f125490d4e4abd655f2202c54dec.img
sanchaung /boot/initramfs-3.10.0-1160.el7.x86_64.img
sanchaung /boot/initramfs-3.10.0-1160.el7.x86_64kdump.img
sanchaung /boot/symvers-3.10.0-1160.el7.x86_64.gz
sanchaung /boot/System.map-3.10.0-1160.el7.x86_64
sanchaung /boot/vmlinuz-0-rescue-c006f125490d4e4abd655f2202c54dec
sanchaung /boot/vmlinuz-3.10.0-1160.el7.x86_64
[root@gh-shell 1-13]# ls
3     fei1  fei3    gao1   gao2  gao4  gao6  gao8  gaofei  jiang
ding  fei2  for.sh  gao10  gao3  gao5  gao7  gao9  gaohui
[root@gh-shell 1-13]# 

$# 位置变量的个数

$* 所有位置变量的内容

$@ 所有位置变量的内容

while:

  1. 控制次数的循环
  2. 死循环

控制次数 break contune

[root@gh-shell 1-13] cat while.sh 
#!/bin/bashi=1
while (( i<10 ))
doecho "sanchuang $i"sleep 1(( i++ ))if (( i==6 ));then#breakcontinuefiecho "gaohui $i"
done[root@gh-shell 1-13]# 

死循环 true 和 : 是一样的

[root@gh-shell 1-13] cat while2.sh 
#!/bin/bashi=1
while true
doecho "sanchaung $i"((i++))sleep 1if (( i==5 ));thenbreakfi
done
[root@gh-shell 1-13]# [root@gh-shell 1-13] cat while2.sh 
#!/bin/bashi=1
while :
doecho "sanchaung $i"((i++))sleep 1if (( i==5 ));thenbreakfi
done
[root@gh-shell 1-13]# 

找出语文成绩大于等于90分的人,输出他的名字和语文成绩

[root@gh-shell 1-13] cat grade.txt 
name	chinese	math	english
cali	80		91		82
tom		90		80		99
lucy	99		70		75
jack	60		89		99
[root@gh-shell 1-13] cat grade.txt|awk '$2 >=90{print $1,$2}'
name chinese
tom 90
lucy 99
[root@gh-shell 1-13]# [root@gh-shell 1-13] bash while3.sh 
tom 90
lucy 99
[root@gh-shell 1-13] cat while3.sh 
#!/bin/bashwhile read uname chinese math english
do	#对chinese成绩进行判断,大于等于90的就输出if [[ $uname == "name" ]];thencontinuefiif (( $chinese >=90 ));thenecho "$uname $chinese"fi
done < grade.txt
[root@gh-shell 1-13]# 也可以:
[root@gh-shell 1-13] cat while3.sh 
#!/bin/bashcat grade.txt|while read uname chinese math english
do	#对chinese成绩进行判断,大于等于90的就输出if [[ $uname == "name" ]];thencontinuefiif (( $chinese >=90 ));thenecho "$uname $chinese"fi
done
[root@gh-shell 1-13]# 

第一天的小游戏

'编写一个抽奖程序,先随机产生一个中奖号码 在10以内,然后让用户去猜,顺便统计一下猜的次数,没用猜中就一直,如果在三次以内猜中的,输出你是天才,三次以上的就输出运气不好。'[root@gh-shell 1-13]# cat lucky_game.sh 
#!/bin/bash#产生一个随机数
lucky_num=$((RANDOM%10))#计数器
count=1#游戏程序
while true
doread -p "请输入你的中奖号码:" numif (( $num==$lucky_num ));thenecho "恭喜你猜中了号码,中了500大奖"if (( count<4 ));thenecho "你是天才,累计猜了 $count 次"elseecho "运气不佳,累计猜了 $count 次"fibreakelseecho "对不起,请继续猜中奖号码"if (( $num > $lucky_num  ));thenecho "大了"elseecho "小了"fifi#增加猜的次数((count++))done

练习: 编写抽同学回答问题的脚本

编写抽同学回答问题的脚本answer.sh,定义一个名单name.txt,然后从名单里抽取同学的名字,抽过的不再抽

[root@gh-shell 1-13] cat name.txt 
高辉
高菲
张渊
胡亚
唐荣
张宇
高琛茗
高定江
高铭雪
史名龙
李忠奇
朱俊学
宋长爱
[root@gh-shell 1-13]# 
'抽中的同学存放到另一个文件里 a_name.txt'[root@gh-shell 1-13] cat answer.sh 
#!/bin/bash
#描述:这是一个抽同学名字的脚本
#作者:gh
#time: 2024-1-13
#mail: 3515979791@qq.com
#公司: 不冤不乐#先统计name.txt文件里用户的数量,然后产生一个随机数,根据这个数字抽取name.txt文件里对应的行的同学名字
#知道name.txt有多少行
total_line=$(cat name.txt|wc -l)while true
do#得到保存已经抽过奖的同学文件a_name.txt的总行数total_a_name_line=$(cat a_name.txt|wc -l)if (( $total_line == $total_a_name_line ));thenecho "所有的同学已经抽完了,重新开始抽同学"#清空一下a_name.txt文件>a_name.txtbreakfi	#得到一个name.txt文件里的一个随机的行数lucky_num=$((RANDOM%total_line + 1)) #得到对应的行的人的名字sname=$(cat name.txt|head -n $lucky_num|tail -1)#输出中奖同学的名字,使用grep去a_name.txt文件里查找是否已经抽取过了if grep "$sname" a_name.txt &>/dev/null ;thenecho "$sname 同学已经抽过了,继续抽奖"sleep 1elseecho "请 $sname 同学回答问题"#保存已经抽取的名字到a_name.txtecho "$sname" >>a_name.txtbreakfi
done

要想让这个脚本永久有效

1.修改环境变量

[root@gh-shell 1-13] PATH=/shell/1-13/:$PATH

2.修改 ~/.bashrc 文件

在最后一行加上
PATH=/shell/1-13/:$PATH

3.给这个脚本加上可执行权限

[root@gh-shell 1-13] chmod +x answer.sh 
[root@gh-shell 1-13] answer.sh 

4.起一个别名,把别名放到 ~/.bashrc 文件夹下边

[root@gh-shell 1-13]# alias ans=answer.sh
[root@gh-shell 1-13]# ans
所有的同学已经抽完了,重新开始抽同学
在 ~/.bashrc  最后一行添加
alias ans=answer.sh

如何知道两个文件里的内存一样?

1.对比行数: wc -l 统计行数

2.hash值

3.diff

如何判断某个人已经抽过了

利用grep过滤查找

[root@gh-shell 1-13] cat name.txt 
高辉
高菲
张渊
胡亚
唐荣
张宇
高琛茗
高定江
高铭雪
史名龙
李忠奇
朱俊学
宋长爱
[root@gh-shell 1-13] cat name.txt|grep "高"
高辉
高菲
高琛茗
高定江
高铭雪
[root@gh-shell 1-13]# 

文本处理相关命令

seq

seq:用于生成数列,可以指定起始值、结束值和步长等参数。例如,生成1到10的数列:

seq 1 10

xargs

xargs:用于从标准输入中读取数据,并将其作为参数传递给其他命令。例如,使用xargs将标准输入的每一行作为参数传递给echo命令:

echo "apple banana cherry" | xargs echo

argumens 参数

xmen 很多

把一列的数据转换成一行

[root@gh-shell 1-13] seq 5
1
2
3
4
5
[root@gh-shell 1-13] seq 5|xargs
1 2 3 4 5

xargs是一个传递参数的命令

很像 |管道符号

[root@gh-shell gao] seq 5|xargs mkdir
[root@gh-shell gao] ls
1  2  3  4  5
[root@gh-shell gao]# 

uniq

uniq:用于去除重复的行。可以与sort命令配合使用,先按需要的字段排序,再去除重复行。例如,去除文件file.txt中的重复行:

sort file.txt | uniq
[root@gh-shell 1-13]# cat test.txt 
gaohui
gaodingjiang
gaohui
gaodingjiang
gaofei
gaohui
gaodingjiang
gaohui
gaodingjiang
gaofei
gaohui
gaodingjiang
gaohui
gaodingjiang
gaofei
[root@gh-shell 1-13]# cat test.txt |sort
gaodingjiang
gaodingjiang
gaodingjiang
gaodingjiang
gaodingjiang
gaodingjiang
gaofei
gaofei
gaofei
gaohui
gaohui
gaohui
gaohui
gaohui
gaohui
[root@gh-shell 1-13]# cat test.txt |sort|uniq
gaodingjiang
gaofei
gaohui
[root@gh-shell 1-13]# 

一般uniq和sort是一起用的,去重之前先sort一下。因为去重只能去连续的

选项

-c 统计重复出现的次数

[root@gh-shell 1-13] cat test.txt |sort|uniq -c6 gaodingjiang3 gaofei6 gaohui
[root@gh-shell 1-13]# 

-u打印不重复的行

[root@gh-shell 1-13] cat test.txt |sort|uniq -u
gaofei1
[root@gh-shell 1-13]# 

-d是打印出重复的行

[root@gh-shell 1-13] cat test.txt |sort|uniq -d
gaodingjiang
gaofei
gaohui
[root@gh-shell 1-13]# 

sort

sort:用于排序文件的行。可以按照字典顺序或数值顺序进行排序,也可以根据特定字段进行排序。例如,按照数字大小对file.txt进行排序:

默认是根据第一个字母的ASCII的大小进行升序排列

ASCII (American Standard Code for Information Interchange):美国信息交换标准代码是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言。它是最通用的信息交换标准,并等同于国际标准 ISO/IEC 646。ASCII第一次以规范标准的类型发表是在1967年,最后一次更新则是在1986年,到目前为止共定义了128个字符。
sort -n file.txt
[root@gh-shell 1-13] cat test.txt 
gaohui
gaodingjiang
gaohui
gaodingjiang
gaofei
gaohui
gaodingjiang
gaohui
gaodingjiang
gaofei
gaohui
gaodingjiang
gaohui
gaodingjiang
gaofei
[root@gh-shell 1-13] cat test.txt |sort
gaodingjiang
gaodingjiang
gaodingjiang
gaodingjiang
gaodingjiang
gaodingjiang
gaofei
gaofei
gaofei
gaohui
gaohui
gaohui
gaohui
gaohui
gaohui
[root@gh-shell 1-13]# 

-n选项—>让字符串识别成数值去排序

[root@gh-shell ~] echo -e "123\n26\n3" | sort -n
3
26
123
[root@gh-shell ~]# 

-r选项是降序排列

[root@gh-shell ~] echo -e "123\n26\n3" | sort -n -r
123
26
3
[root@gh-shell ~]# 
[root@gh-shell ~] echo -e "123\n26\n3" | sort -nr
123
26
3
[root@gh-shell ~]# 

-k 指定字段(哪一列)进行排序(最好加上-n)

[root@gh-shell 1-13] cat grade.txt |sort -k 2 -n
name	chinese	math	english
jack	60	89	99
cali	80	91	82
tom		90	80	99
lucy	99	70	75
[root@gh-shell 1-13]# [root@gh-shell 1-13] cat grade.txt |sort -k 2 -nr
lucy	99	70	75
tom	90	80	99
cali	80	91	82
jack	60	89	99
name	chinese	math	english
[root@gh-shell 1-13]# 

-t指定分隔符

[root@gh-shell 1-13] cat /etc/passwd|sort -t ":" -k 3 -nr
sc20:x:1019:1019::/home/sc20:/bin/bash
sc19:x:1018:1018::/home/sc19:/bin/bash
sc18:x:1017:1017::/home/sc18:/bin/bash
sc17:x:1016:1016::/home/sc17:/bin/bash
sc16:x:1015:1015::/home/sc16:/bin/bash
sc15:x:1014:1014::/home/sc15:/bin/bash
sc14:x:1013:1013::/home/sc14:/bin/bash
sc13:x:1012:1012::/home/sc13:/bin/bash
sc12:x:1011:1011::/home/sc12:/bin/bash
sc11:x:1010:1010::/home/sc11:/bin/bash
sc10:x:1009:1009::/home/sc10:/bin/bash
sc9:x:1008:1008::/home/sc9:/bin/bash
sc8:x:1007:1007::/home/sc8:/bin/bash
sc7:x:1006:1006::/home/sc7:/bin/bash
sc6:x:1005:1005::/home/sc6:/bin/bash
sc5:x:1004:1004::/home/sc5:/bin/bash
sc4:x:1003:1003::/home/sc4:/bin/bash
sc3:x:1002:1002::/home/sc3:/bin/bash
sc2:x:1001:1001::/home/sc2:/bin/bash
sc1:x:1000:1000::/home/sc1:/bin/bash
polkitd:x:999:998:User for polkitd:/:/sbin/nologin
chrony:x:998:996::/var/lib/chrony:/sbin/nologin
systemd-network:x:192:192:systemd Network Management:/:/sbin/nologin
nobody:x:99:99:Nobody:/:/sbin/nologin
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
dbus:x:81:81:System message bus:/:/sbin/nologin
sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologin
ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin
games:x:12:100:games:/usr/games:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
halt:x:7:0:halt:/sbin:/sbin/halt
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
sync:x:5:0:sync:/sbin:/bin/sync
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
bin:x:1:1:bin:/bin:/sbin/nologin
root:x:0:0:root:/root:/bin/bash

tr

字符串转换的命令

tr:用于字符转换或删除。可以将输入中的字符进行替换或删除。例如,将文件file.txt中的所有小写字母转换为大写字母:

tr '[:lower:]' '[:upper:]' < file.txt

1.转换功能

[root@gh-shell 1-13] echo 112233
112233
[root@gh-shell 1-13] echo 112233|tr 123 abc
aabbcc
[root@gh-shell 1-13] echo 1122333333|tr 123 abc
aabbcccccc
[root@gh-shell 1-13] echo 1122333333123123|tr 123 abc
aabbccccccabcabc

2.删除功能

tr -d

-d delete删除

[root@gh-shell 1-13] df -Th|grep "/$"|awk '{print $6}'|tr -d "%"
5
[root@gh-shell 1-13]# 
[root@gh-shell 1-13] echo "gaohui"
gaohui
[root@gh-shell 1-13] echo "gaohui"|tr -d "ah"
goui
[root@gh-shell 1-13]# 

3.压缩功能

-s 压缩连续的字符串

[root@gh-shell 1-13]# echo 1111111111222222223333333333|tr -s 123
123
[root@gh-shell 1-13]# 

cut

-c 指定字符串的长度

-f 指定字段数

-d 指定分隔符

cut:用于从文件的行中提取指定字段。可以指定分隔符和字段位置。例如,提取文件file.txt的第1列和第3列:

cut -f1,3 file.txt

截取字符串和列

1.截取字符串

[root@gh-shell 1-13] echo "shemengjie"
shemengjie
[root@gh-shell 1-13] echo "shemengjie"|cut -c 1
s
[root@gh-shell 1-13] echo "shemengjie"|cut -c 1-5
sheme
[root@gh-shell 1-13] echo "shemengjie"|cut -c 5-10
engjie

-7是1-7

7-是7到最后一个

[root@gh-shell 1-13] echo "asdasfsgsgsfsdfasfas"|cut -c -7
asdasfs
[root@gh-shell 1-13] echo "asdasfsgsgsfsdfasfas"|cut -c 7-
sgsgsfsdfasfas
[root@gh-shell 1-13]# 

2.截取列:

cut默认的分隔符是 tab

[root@gh-shell 1-13] cat grade.txt |cut -f 3
math
91
80
70
89
[root@gh-shell 1-13] cat grade.txt |cut -f 2,3
chinese	math
80	91
90	80
99	70
60	89

指定分隔符

-d

[root@gh-shell 1-13] cat /etc/passwd|cut -d ":" -f 1,3
root:0
bin:1
daemon:2
adm:3
lp:4
sync:5
shutdown:6
halt:7
mail:8
operator:11
games:12
ftp:14
nobody:99
systemd-network:192
dbus:81
polkitd:999
tss:59
sshd:74
postfix:89
chrony:998
[root@gh-shell 1-13]# 

awk也可以

[root@gh-shell 1-13] cat /etc/passwd|awk -F":" '{print $1,$3}'
root 0
bin 1
daemon 2
adm 3
lp 4
sync 5
shutdown 6
halt 7
mail 8
operator 11
games 12
ftp 14
nobody 99
systemd-network 192
dbus 81
polkitd 999
tss 59
sshd 74
[root@gh-shell 1-13]# 
[root@gh-shell 1-13] df -Th|tr -s " "|cut -d " " -f 1,2
文件系统 类型
devtmpfs devtmpfs
tmpfs tmpfs
tmpfs tmpfs
tmpfs tmpfs
/dev/mapper/centos-root xfs
/dev/sda1 xfs
/dev/mapper/centos-home xfs
tmpfs tmpfs
[root@gh-shell 1-13]# 

截取字段的时候 一般使用 awk方便些

cut默认的分隔符是tab

awk默认的分隔符是空白(tab,空格)

[root@gh-shell 1-13] df -Th|awk '{print $1,$3}'
文件系统 容量
devtmpfs 898M
tmpfs 910M
tmpfs 910M
tmpfs 910M
/dev/mapper/centos-root 50G
/dev/sda1 1014M
/dev/mapper/centos-home 47G
tmpfs 182M
[root@gh-shell 1-13]# 

awk

awk:强大的文本处理工具,可以用于数据提取、格式化等。可以通过设置字段分隔符和执行操作来处理文本。例如,打印文件file.txt的第2列:

awk '{print $2}' file.txt

paste

paste:用于将多个文件的内容按列合并。可以指定分隔符和输出格式。例如,将file1.txt和file2.txt按列合并:

paste -d',' file1.txt file2.txt
[root@gh-shell 1-13] paste grade.txt name.txt 
name	chinese	math	english	高辉
cali	80	91	82	高菲
tom		90	80	99	张渊
lucy	99	70	75	胡亚
jack	60	89	99	唐荣张宇高琛茗高定江高铭雪史名龙李忠奇朱俊学宋长爱
[root@gh-shell 1-13]# cat grade.txt >grade2.txt 
[root@gh-shell 1-13]# paste grade.txt grade2.txt 
name	chinese	math	english	name	chinese	math	english
cali	80	91	82	cali	80	91	82
tom		90	80	99	tom		90	80	99
lucy	99	70	75	lucy	99	70	75
jack	60	89	99	jack	60	89	99
[root@gh-shell 1-13]# 

split

split:用于将一个大文件分割为多个小文件。可以指定分割大小和输出文件名格式。例如,将bigfile.txt按10MB大小进行分割:

split -b 10M bigfile.txt

split 拆分(切割)命令

有一台机器内存比较小,只有4G,但是有个文件有20G的文本文件

网络传输的时候,网速比较慢,但是文件比较大,例如100G的文件,传输需要一天

思路

  • 根据大小拆(字节)

    • -b 10 以十个字节进行拆分
    • -C 10 尽量保持每行的完整性,也是根据字节来截取,多余的就不放到这个文件里
    [root@gh-shell gaofei] split -C 100 passwd -d sc_
    [root@gh-shell gaofei] ls
    gaohui_000  gaohui_003  sc_01  sc_04  sc_07  sc_10  sc_13  sc_16  sc_19
    gaohui_001  passwd      sc_02  sc_05  sc_08  sc_11  sc_14  sc_17  sc_20
    gaohui_002  sc_00       sc_03  sc_06  sc_09  sc_12  sc_15  sc_18  sc_21
    [root@gh-shell gaofei] split -b 100 passwd -d gh_
    [root@gh-shell gaofei] ls
    gaohui_000  gh_00  gh_04  gh_08  gh_12  gh_16   sc_01  sc_05  sc_09  sc_13  sc_17  sc_21
    gaohui_001  gh_01  gh_05  gh_09  gh_13  gh_17   sc_02  sc_06  sc_10  sc_14  sc_18
    gaohui_002  gh_02  gh_06  gh_10  gh_14  passwd  sc_03  sc_07  sc_11  sc_15  sc_19
    gaohui_003  gh_03  gh_07  gh_11  gh_15  sc_00   sc_04  sc_08  sc_12  sc_16  sc_20
    [root@gh-shell gaofei]# 
  • 根据行数猜

    • -5 5行
    • -d 产生的文件的后缀以数字命名
    • -a 3 表示用三位数据来顺序命名
    • -l 是按行分割
[root@gh-shell gaofei] split  -l 10 passwd -d -a 3 gaohui_
[root@gh-shell gaofei] ls
gaohui_000  gaohui_001  gaohui_002  gaohui_003  passwd
[root@gh-shell gaofei] cat gaohui_000
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
sync:x:5:0:sync:/sbin:/bin/sync
shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown
halt:x:7:0:halt:/sbin:/sbin/halt
mail:x:8:12:mail:/var/spool/mail:/sbin/nologin
operator:x:11:0:operator:/root:/sbin/nologin
[root@gh-shell gaofei]# 

优化思路:

  1. 花钱上硬件—>效果最好,立竿见影 —>代价比较大
  2. 使用技术手段

拼接:

[root@gh-shell gaofei] cat gh_* >gh_passwd

有个问题,一个文件有200万行—>如何快速定位到80-100万行的内容进行分析

很简单:分成10份,每份20万行,第5份就是我们要分析的内容

col

col:用于处理列对齐的文本文件。可以进行对齐操作、提取指定列等。例如,将file.txt进行列对齐:

col -x file.txt

join

join:用于将两个文件的行按指定字段进行连接。可以指定字段分隔符和连接方式。例如,将file1.txt和file2.txt按第1列进行连接:

join -t',' -1 1 -2 1 file1.txt file2.txt
[root@gh-shell 1-13] cat grade.txt grade2.txt 
name	chinese	math	english
cali	80	91	82
tom	90	80	99
lucy	99	70	75
jack	60	89	99
name	chinese	math	linux
cali	80	91	82
tom	90	80	99
lucy	99	70	75
jack	60	89	99
[root@gh-shell 1-13] join grade.txt grade2.txt 
name chinese math english chinese math linux
cali 80 91 82 80 91 82
tom 90 80 99 90 80 99
lucy 99 70 75 99 70 75
jack 60 89 99 60 89 99
[root@gh-shell 1-13]# 
[root@gh-shell 1-13] join -j 2 grade.txt grade2.txt 
chinese name math english name math linux
80 cali 91 82 cali 91 82
90 tom 80 99 tom 80 99
99 lucy 70 75 lucy 70 75
60 jack 89 99 jack 89 99
[root@gh-shell 1-13]# 

使用-j选项时,可以指定一个或两个匹配字段的列号或列名。匹配字段必须是两个文件中都存在的列,并且具有相同的顺序。

小结一下

uniq:去重

​ -c 统计重复的次数 count

​ -u 打印唯一的行,不重复的行

​ -d 打印重复的行

sort: 排序

​ -n 根据数值来排序

​ -r 降序排列

​ -k 指定字段进行排序

​ -t 指定分隔符,默认是空白

作业

根据/etc/passwd文件里的uid进行降序排序,输出第1个字段和第3个字段

[root@gh-shell 1-13] cat /etc/passwd|sort -t ":" -k 3 -nr|awk -F ":" '{print $1,$3}'
sc20 1019
sc19 1018
sc18 1017
sc17 1016
sc16 1015
sc15 1014
sc14 1013
sc13 1012
sc12 1011
sc11 1010
sc10 1009
sc9 1008
sc8 1007
sc7 1006
sc6 1005
sc5 1004
sc4 1003
sc3 1002
sc2 1001
sc1 1000
polkitd 999
chrony 998
systemd-network 192
nobody 99
postfix 89
dbus 81
sshd 74
tss 59
ftp 14
games 12
operator 11
mail 8
halt 7
shutdown 6
sync 5
lp 4
adm 3
daemon 2
bin 1
root 0
[root@gh-shell 1-13]# 
[root@gh-shell 1-13]# cat /etc/passwd|awk -F":" '{print $1,$3}'|sort -k 2 -nr
sc20 1019
sc19 1018
sc18 1017
sc17 1016
sc16 1015
sc15 1014
sc14 1013
sc13 1012
sc12 1011
sc11 1010
sc10 1009
sc9 1008
sc8 1007
sc7 1006
sc6 1005
sc5 1004
sc4 1003
sc3 1002
sc2 1001
sc1 1000
polkitd 999
chrony 998
systemd-network 192
nobody 99
postfix 89
dbus 81
sshd 74
tss 59
ftp 14
games 12
operator 11
mail 8
halt 7
shutdown 6
sync 5
lp 4
adm 3
daemon 2
bin 1
root 0
[root@gh-shell 1-13]# 

统计nginx的日志文件里访问量最大的6个ip地址,按照降序排序

image-20240117161843466

image-20240117161933745

小知识点

写脚本的流程

  • 做需求分析
    • 思路和技术
  • 编写脚本
    • 给脚本起名字
    • 定义变量
    • 用技术去实现
  • 测试
  • 修复bug
  • 上线/交付

怎么统计行数

[root@gh-shell 1-13] cat name.txt|wc -l
13

怎么取出第几行的内容

[root@gh-shell 1-13] cat name.txt|head -5|tail -1
唐荣

在shell中多行缩进

'1.按ESC'
'2.把光标定位到你需要缩进的第一行'
'3.按大写的V,进入到可视化模式'
'4.利用上下方向键选择你需要缩进的行'
'5.按shift + >符号就是像右边缩进,<就是左边'

df -Th: 示磁盘空间使用情况

df -Th 是一个用于显示磁盘空间使用情况的命令。具体解释如下:

  • df 是 “disk free” 的缩写,用于显示文件系统的磁盘空间使用情况。
  • -Th 是两个选项的组合。其中,-T 用于显示文件系统类型,-h 用于以人类可读的方式显示磁盘空间大小。

运行 df -Th 命令将会列出已挂载的文件系统的相关信息,包括文件系统类型、总容量、已使用的空间、可用空间、使用率和挂载点等。输出结果可以帮助用户快速了解磁盘空间的使用情况,并进行相应的管理和调整。

[root@gh-shell 1-13] df -Th
文件系统                类型      容量  已用  可用 已用% 挂载点
devtmpfs                devtmpfs  898M     0  898M    0% /dev
tmpfs                   tmpfs     910M     0  910M    0% /dev/shm
tmpfs                   tmpfs     910M  9.6M  901M    2% /run
tmpfs                   tmpfs     910M     0  910M    0% /sys/fs/cgroup
/dev/mapper/centos-root xfs        50G  2.1G   48G    5% /
/dev/sda1               xfs      1014M  151M  864M   15% /boot
/dev/mapper/centos-home xfs        47G   33M   47G    1% /home
tmpfs                   tmpfs     182M     0  182M    0% /run/user/0
[root@gh-shell 1-13]# 

grep

利用grep取出以什么结尾的行

$符号的重要性—>表示以什么结尾

[root@gh-shell 1-13] df -Th|grep "/$"
/dev/mapper/centos-root xfs        50G  2.1G   48G    5% /
利用grep取出以什么开头的行

^表示以什么开头

[root@gh-shell 1-13] cat /etc/passwd|grep "^sc1"
sc1:x:1000:1000::/home/sc1:/bin/bash
sc10:x:1009:1009::/home/sc10:/bin/bash
sc11:x:1010:1010::/home/sc11:/bin/bash
sc12:x:1011:1011::/home/sc12:/bin/bash
sc13:x:1012:1012::/home/sc13:/bin/bash
sc14:x:1013:1013::/home/sc14:/bin/bash
sc15:x:1014:1014::/home/sc15:/bin/bash
sc16:x:1015:1015::/home/sc16:/bin/bash
sc17:x:1016:1016::/home/sc17:/bin/bash
sc18:x:1017:1017::/home/sc18:/bin/bash
sc19:x:1018:1018::/home/sc19:/bin/bash
[root@gh-shell 1-13]# 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/633836.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode面试题02.07链表相交

力扣题目链接 思想&#xff08;数学&#xff09;&#xff1a;设链表A的长度为a&#xff0c;链表B的长度为b&#xff0c;A到交点D的距离为c&#xff0c;B到交点D的距离为d。显然可以得到两者相交链表的长度为&#xff1a;a - c b - d ,变换一下式子得到&#xff1a;a d b c…

css-动画效果学习示例

阴影 x-轴 y-轴 模糊度 颜色 (正负值可以表示角度问题) 可以加多个阴影 内置阴影 transition 可以添加动画延迟效果 向z轴缩进&#xff0c;开启透视respective 触发旋转效果 学习来源 &#xff1a;动画属性_哔哩哔哩_bilibili

如何做标准化?| 京东云技术团队

在现代信息化的市场环境和社会中&#xff0c;标准化已经成为了各种行业的一个重要的标志。标准化不仅可以提升生产效率&#xff0c;减轻质量问题&#xff0c;还可以增加产品的可靠性和互通性。在这篇文章中&#xff0c;我们将探讨如何做标准化&#xff0c;为您提供详细的指导和…

深入Docker5:安装nginx部署完整项目

目录 准备 为什么要使用nginx mysql容器构建 1.删除容器 2.创建文件夹 3.上传配置文件 4.命令构建mysql容器 5.进入mysql容器&#xff0c;授予root所有权限 6.在mysql中用命令运行sql文件 7.创建指定数据库shop 8.执行指定的sql文件 nginx安装与部署 1.拉取镜像 2…

docker:Java通过nginx获取客户端的真实ip地址

问题现象 我们的平台使用Spring Cloud微服务架构&#xff0c;使用Spring Boot构建Java服务&#xff0c;使用google的jib插件打成docker镜像包我们使用docker虚拟化部署&#xff0c;使用docker-compose统一管理所有服务&#xff0c;包括Java服务和nginx等组件我们前后端分离&am…

游戏《泰坦陨落2》msvcr120.dll丢失的多种解决方法分享

在Windows 11操作系统环境下&#xff0c;众多玩家在体验《泰坦陨落2》这款备受瞩目的射击游戏时&#xff0c;遭遇了一个令人困扰的技术问题&#xff1a;系统提示缺失msvcr120.dll文件。这一关键的动态链接库文件对于游戏的正常运行至关重要&#xff0c;它的缺失直接导致了《泰坦…

小白数学建模 Mathtype 7.7傻瓜式下载安装嵌入Word/WPS以及深度使用教程

数学建模Mathtype的下载安装嵌入Word/WPS以及深度使用教程 一 Mathtype 的下载安装1.1 安装前须知1.2 下载压缩包1.3 安装注册 二 嵌入Word/WPS2.1 嵌入Word2.1.1 加载项嵌入 Word2.1.2 宏录制嵌入 Word 2.2 嵌入 WPS2.2.1 加载项嵌入 WPS2.2.2 宏录制嵌入 WPS 2.3 嵌入时报错解…

【GNN报告】“青源Talk”-图可信学习与图大模型研究进展

北航王啸-图自监督学习 简介 介绍 浙大杨洋-探索大图模型预训练 总括 介绍 参考 Yang Yang - Zhejiang University dgraph-web DGraph: ALarge-Scale Financial Dataset for Graph Anomaly Detection All in One: Multi-task Prompting for Graph Neural Networks&#xf…

K8S-YAML

一、Kubernetes对象的描述 kubernetes中资源可以使用YAML描述&#xff08;如果您对YAML格式不了解&#xff0c;可以参考YAML语法&#xff09;&#xff0c;也可以使用JSON。其内容可以分为如下四个部分&#xff1a; typeMeta&#xff1a;对象类型的元信息&#xff0c;声明对象…

一款开源且不限制大小可以设置过期时间的支持分享的的开源文件共享系统picoshare 部署教程

1.拉取镜像 2.部署 创建目录 mkdir -p /opt/picoshare/data 部署 其中:"somesecretpass"是密码 docker run \--env "PORT4001" \--env "PS_SHARED_SECRETsomesecretpass" \--publish 10005:4001/tcp \--volume "/opt/picoshare/data:…

最优解-最长公共子序列

问题描述 最长公共子序列(Longest Common Subsequence&#xff0c;LCS)即求两个序列最长的公共子序列(可以不连续)。比如3 2 1 4 5和1 2 3 4 5两个序列&#xff0c;最长公共子序列为2 4 5 长度为3。解决这个问题必然要使用动态规划。既然要用到动态规划&#xff0c;就要知道状…

oracle11g的闪回技术-闪回表-时间戳

--数据库闪回表 --1创建表&#xff08;登录模式system&#xff09; CREATE table dept2 as select * from dept;--此语句如果加上where条件可用于工作中数据的临时备份 select * from dept2;--查询新建表信息 --进入sql>set time on 通过时间点闪回 记录弹出的时间点&#…

Acrel-1000DP分布式光伏系统在某重工企业18MW分布式光伏中应用

摘 要&#xff1a;分布式光伏发电特指在用户场地附近建设&#xff0c;运行方式以用户侧自发自用、余电上网&#xff0c;且在配电系统平衡调节为特征的光伏发电设施&#xff0c;是一种新型的、具有广阔发展前景的发电和能源综合利用方式&#xff0c;它倡导就近发电&#xff0c;就…

一张图描述Http常用状态码(301、302、305、404、408等等)

301—永久移动。被请求的资源已被永久移动位置&#xff1b; 302—请求的资源现在临时从不同的 URI 响应请求&#xff1b; 305—使用代理。被请求的资源必须通过指定的代理才能被访问&#xff1b; 307—临时跳转。被请求的资源在临时从不同的URL响应请求&#xff1b; 40…

抖音VR直播新玩法,凸显各行业领域商业价值

抖音近期新推出了VR直播新玩法&#xff0c;用户不需要佩戴专业的显示头盔&#xff0c;只需要左右摇晃旋转手机&#xff0c;即可通过手机看到主播的全景直播。其实&#xff0c;VR直播并不是一个新东西&#xff0c;几年前&#xff0c;明星演唱会也用过VR直播拍摄技术&#xff0c;…

网站会遇到的几种攻击类型,及如何防御

随着互联网的普及和人们对网络使用的增加&#xff0c;网站安全问题变得越来越突出。无论是个人还是企业&#xff0c;都需要了解并采取措施来保护自己的网站和用户数据的安全。本文介绍了几种常见的网站安全攻击方式、潜在危害及其预防措施&#xff0c;帮助全面了解网站安全的各…

达梦数据库增删改查常用操作及-2723: 仅当指定列列表,且SET IDENTITY_INSERT为ON时,才能对自增列赋值问题修复

创建表 CREATE TABLE DICT ( "ID" INT IDENTITY(1, 1) NOT NULL, "TYPE" VARCHAR(30), "CODE" BIGINT, "NAME" VARCHAR(300), "VALUE" VARCHAR(200), "DESCRIPTION" VARCHAR(255), "OPERATOR"…

AI在检验数据方面的应用场景-九五小庞

AI在检验数据方面有广泛的应用前景&#xff0c;主要体现在以下几个方面&#xff1a; 自动化数据收集和分析&#xff1a;AI可以通过自动化技术&#xff0c;收集各种检验数据&#xff0c;如血液、尿液、生化指标等&#xff0c;并进行快速、准确的分析&#xff0c;提高检验效率。…

canvas绘制图形

目录 1、canvas绘制矩形 2、canvas绘制线 3、canvas绘制圆 4、canvas绘制多圈动画圆 HTML5<canvas>元素用于图形的绘制&#xff0c;Canvas API主要聚焦于2D图形。 1、canvas绘制矩形 canvas是一个二维网格&#xff0c;左上角坐标为(0,0)&#xff0c;横轴为x轴&…

C#,入门教程(38)——大型工程软件中类(class)修饰词partial的使用方法

上一篇&#xff1a; C#&#xff0c;入门教程(37)——优秀程序员的修炼之道https://blog.csdn.net/beijinghorn/article/details/125011644 一、大型&#xff08;工程应用&#xff09;软件倚重 partial 先说说大型&#xff08;工程应用&#xff09;软件对源代码的文件及函数“…