《Linux Shell脚本攻略》 笔记 第二章:常用命令

简介: 《Linux Shell脚本攻略》 笔记第二章:常用命令

1、cat

    cat -s  //多个空白行压缩成一个

    cat *.txt | tr -s '\n'    //移除空白行

    cat -n  //加行号

2、find

沿着文件层次结构向下遍历,匹配符合条件的文件,并执行相应的操作。

eg:

find ./ ! -name "*.txt" -print

[root@localhost program_test]# find ./  -type f -name "*.swp" -delete


3、xargs 将标准输入数据转换成命令行参数。

[root@localhost program_test]# cat out.txt | xargs  //将单行转化为多行


[root@localhost program_test]# cat out.txt | xargs -n 3  //将单行转化为多行,每行的个数为3.


//统计.c和.cpp的文件的代码行数.  xargs -0 将'\0'作为定界符.

[root@localhost program_test]# find . -type f -name "*.c*" -print0 | xargs -0 wc -l

 10 ./main/cos_value.c

 10 ./main/sin_value.c

  5 ./main/haha.c

 15 ./main/main.c

  8 ./hello.cpp

  8 ./sin.c

 32 ./review2.cpp

 24 ./review5.cpp

  7 ./hello.c

119 total


4.tr命令(translate的简写) 可对来自标准输入的字符进行替换、删除及压缩。

即:将一组字符变为另一组字符。

1)替换

echo “HELLO” | tr [A-Z] [a-z]

2)删除

[root@localhost program_test]# echo "hello 123 world 456" | tr -d '0-9'

hello  world

3)压缩字符

[root@localhost program_test]# echo "GNU is     not UNIX" | tr -s ' '

GNU is not UNIX

//综合举例

[root@localhost program_test]# cat sum.txt

1

2

3

4

5

[root@localhost program_test]# cat sum.txt | echo $[ $(tr '\n' '+') 0 ]

15


5、 md5校验

[root@localhost program_test]#  md5sum out.txt > out.txt.md5

[root@localhost program_test]# cat out.txt.md5

fd46d559bf0c90170fef3da3c3de4c67  out.txt


//eg:

[root@localhost program_test]# find ./ -type f -name "*.txt" -print0 | xargs -0 md5sum >> curr_dir.md5

46e17910faf509df48dbfba9729ef018  ./banana.txt

c1dbbf63209a5580c052dc557510e7fb  ./11.txt

a80ddf02fa3a86c14066204e4bf2dbb9  ./multiline.txt

[root@localhost program_test]# md5sum -c curr_dir.md5

./banana.txt: OK

./11.txt: OK

./multiline.txt: OK


6、sort排序

//sort 按第2列排序

[root@localhost program_test]# sort -k 2 sort.txt

4 bad 5000

3  linux 50

1   mac 2000

2  winxp 100

//sort 逆序排序

[root@localhost program_test]# sort -r sort.txt

4 bad 5000

3  linux 50

2  winxp 100

1   mac 2000


//综合举例:统计字符串中每个字符出现的次数

[root@localhost program_test]# ./total_cnts.sh

AHEBHAAA

4A1B1E2H

[root@localhost program_test]# cat total_cnts.sh

INPUT="AHEBHAAA"

output=$(echo $INPUT | sed 's/[^.]/&\n/g' | sed '/^$/d' | sort | uniq -c | tr -d ' \n')

echo $INPUT

echo $output


[释义]: sed 's/[^.]/&\n/g'     //任意一个字符后面都加上\n

拆分如下:

[root@localhost program_test]# input="ahebhaaa"

[root@localhost program_test]# echo $input | sed 's/[^.]/&\n/g'

a

h

e

b

h

a

a

a


sed '/^$/d'   //删除空行

uniq -c          //统计各行文本出现的次数.

tr -d '\n  '      //删除换行符以及空格字符


7、临时文件命名

[root@localhost program_test]# temp_file="/tmp/var.$$"

[root@localhost program_test]# echo $temp_file

/tmp/ var.16565


相关文章
|
1月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
75 1
|
1月前
|
Ubuntu Linux Python
Tkinter错误笔记(一):tkinter.Button在linux下出现乱码
在Linux系统中,使用Tkinter库时可能会遇到中文显示乱码的问题,这通常是由于字体支持问题导致的,可以通过更换支持中文的字体来解决。
112 0
Tkinter错误笔记(一):tkinter.Button在linux下出现乱码
|
17天前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
40 2
6种方法打造出色的Shell脚本
|
3天前
|
XML JSON 监控
Shell脚本要点和难点以及具体应用和优缺点介绍
Shell脚本在系统管理和自动化任务中扮演着重要角色。尽管存在调试困难、可读性差等问题,但其简洁高效、易于学习和强大的功能使其在许多场景中不可或缺。通过掌握Shell脚本的基本语法、常用命令和函数,并了解其优缺点,开发者可以编写出高效的脚本来完成各种任务,提高工作效率。希望本文能为您在Shell脚本编写和应用中提供有价值的参考和指导。
14 1
|
4天前
|
Java Shell Windows
java Runtime.exec()执行shell/cmd命令:常见的几种陷阱与一种完善实现
java Runtime.exec()执行shell/cmd命令:常见的几种陷阱与一种完善实现
14 1
|
8天前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
22 2
|
14天前
|
Ubuntu Linux Shell
Linux 系统中的代码类型或脚本类型内容
在 Linux 系统中,代码类型多样,包括 Shell 脚本、配置文件、网络配置、命令行工具和 Cron 定时任务。这些代码类型广泛应用于系统管理、自动化操作、网络配置和定期任务,掌握它们能显著提高系统管理和开发的效率。
|
1月前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
62 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
22天前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
43 6
|
18天前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。