Linux-xargs-seq-tr-uniq-sort

Linux-xargs-seq-tr-uniq-sort


一、xrags

| 将前面一个命令的正确的输出送给后面的命令作为输入
xargs 将前面命令的输出送给后面的命令作为参数使用
bash 复制代码
[root@hz shell]# which mkdir
/usr/bin/mkdir
[root@hz shell]# which mkdir| ls -l
总用量 76
drwxr-xr-x. 2 root root   6  5月 16 16:03 20250516160231
-rw-r--r--. 1 root root 265  5月 27 18:05 back_log.sh
-rw-r--r--. 1 root root 399  5月 27 18:35 backup_log.sh
-rw-r--r--. 1 root root 526  5月 18 14:05 create_file.sh
-rw-r--r--. 1 root root 502  5月 18 17:10 create_user.sh
...

[root@hz shell]# which mkdir|xargs ls -l
-rwxr-xr-x. 1 root root 69872  4月 21  2024 /usr/bin/mkdir

二、seq

seq - print a sequence of numbers

用于生成连续或指定步长的数字序列,常用于循环、测试或生成固定格式的输入

生成1-5的数字

root@hz shell# seq 5

1

2

3

4

5

步长值默认为+1

root@hz shell# seq 5 10

5

6

7

8

9

10

root@hz shell# seq 10 -1 5

10

9

8

7

6

5

等长

root@hz shell# seq -w 5 10

05

06

07

08

09

10


三、tr

tr - translate or delete characters

  1. 转换字符

    字母是分别转换的

    root@hz shell# echo "abcdaaabbccdd"|tr abc 123

    123d1112233dd

    将/etc/passwd文件里的小写字母转换为大写

    root@hz shell#cat /etc/passwd|tr "[a-z]" "[A-Z]"

    替换不能为空

    root@hz shell#cat /etc/passwd|tr "0-9" ""

    tr: 当不截断设置1 时,字符串2 不能为空

    删除所有的数字

    root@hz shell#cat /etc/passwd|tr -d "[0-9]"

  2. 删除字符

    -d, --delete

    delete characters in SET1, do not translate

    去除%

    root@hz shell# df -Th|grep "/boot"

    /dev/sda1 xfs 960M 225M 736M 24% /boot

    root@hz shell# df -Th|grep "/boot"|awk '{print $6}'

    24%

    root@hz shell# df -Th|grep "/boot"|awk '{print $6}'|tr -d "%"

    24

    去重,重复的字符串,只显示一个

    root@hz shell# echo "111111111112333333333333"|tr -s "13"

    123


四、uniq

uniq - report or omit repeated lines uniqe 唯一

用于筛选或统计相邻的重复行(需先排序,否则非相邻重复行无法识别)

-c 统计重复的次数 count
-u 统计不重复的行

bash 复制代码
[root@hz shell]# cat test.txt|uniq -c
      6 sanchuang1
      1 sanchuang2
      1 
      3 sanchuang1
      1 sanchuang3
      2 sanchuang1

[root@hz shell]# cat test.txt|sort		# 排序

sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang1
sanchuang2
sanchuang3
[root@hz shell]# cat test.txt|sort|uniq -c
      1 
     11 sanchuang1
      1 sanchuang2
      1 sanchuang3

[root@hz shell]# cat test.txt|uniq -u
sanchuang2

sanchuang3
[root@hz shell]# cat test.txt|sort|uniq -u

sanchuang2
sanchuang3

五、sort

sort 默认情况下,排序的时候是根据字符串的ASCII码值进行比较,一个字符一个字符的比较,默认是升序

-n 把数字当做一个整体的数值来比较
-r 降序
-k 指定哪一列为排序键

bash 复制代码
[root@hz shell]# cat grade.txt 
id	name	sex	chinese	English	math
1	cali	m	80		70		60
2	rose	f	90		98		97
3	tom	    f	70		60		60
4	jack	m	99		99		68
# 按math排序
[root@hz shell]# cat grade.txt |sort -k 5
3	tom	    f	70		60		60
1	cali	m	80		70		60
2	rose	f	90		98		97
4	jack	m	99		99		68
id	name	sex	chinese	English	math
# 整体数值比较
[root@hz shell]# cat grade.txt |sort -k 5 -n
id	name	sex	chinese	English	math
3	tom	    f	70		60		60
1	cali	m	80		70		60
2	rose	f	90		98		97
4	jack	m	99		99		68
# 降序
[root@hz shell]# cat grade.txt |sort -k 5 -nr
4	jack	m	99		99		68
2	rose	f	90		98		97
1	cali	m	80		70		60
3	tom	    f	70		60		60
id	name	sex	chinese	English	math
[root@hz shell]# cat grade.txt |sort -k 5 -nr|head -1
4	jack	m	99		99		68

sort -t 指定字段分割符(默认是空白)

对/etc/passwd文件进行排序,基于uid的大小进行降序排列

cat /etc/passwd|sort -k 3 -t ":" -nr

查看访问量最大的2个地址

awk '{print $1}' access_log|sort|uniq -c|sort -nr|head -2

对/etc/passwd文件进行排序,基于gid(第4列)的大小进行升序排列,取gid最小的前6行

cat /etc/passwd|sort -k 4 -t ":" -n |head -6


总结

xargs、seq、uniq、tr、sort是一组常用的文本处理和批处理工具,它们常通过管道组合使用,完成复杂的文本处理或任务自动化

相关推荐
Jason_chen39 分钟前
Linux 6.2 音频机制深度解析:AI驱动的低延迟音频与零信任音频安全架构
linux
下午写HelloWorld43 分钟前
Linux系统及Ubuntu常用指令
linux·ubuntu·操作系统
lizhihai_992 小时前
股市学习心得-AI 产业链核心标的梳理清单
大数据·服务器·人工智能·科技·学习
云计算磊哥@2 小时前
运维开发宝典026-MySQL02数据库表操作
运维·数据库·运维开发
weixin_523185322 小时前
Collections.unmodifiableMap详解:真的不可修改吗?
java·linux·前端
黄同学real2 小时前
解决 Visual Studio Web Deploy 远程发布报 401 未授权 (ERROR\_USER\_UNAUTHORIZED)
服务器
天天进步20153 小时前
Tunnelto 源码解析 #9:控制服务器设计:Warp、WebSocket、Ping/Pong 与连接保活
运维·服务器·websocket
凡人叶枫3 小时前
Effective C++ 条款04:确定对象被使用前已先被初始化
java·linux·开发语言·c++·嵌入式开发
云栖梦泽3 小时前
玩转RK3506SDK
linux·嵌入式硬件
极客先躯3 小时前
高级java每日一道面试题-2026年02月01日-实战篇[Docker]-Docker Volume 的生命周期管理是怎样的?
java·运维·docker·容器·持久化·架构图·容器卷