Linux

Linux学习笔记(三)

2020-10-20  本文已影响0人  dev_winner

文本处理工具

-i:不区分大小写(grep -ni 'root' passwd)
-v:查找不包含指定内容的行,反向选择(grep -nv 'root' passwd)
-w:按单词搜索(grep -nw 'hello' passwd)(精确匹配)
-o:打印匹配关键字(grep -no 'root' passwd)
-c:统计匹配到的次数(grep -c 'hello' passwd)
-n:显示行号(grep -n 'root' passwd)
-r:逐层遍历目录查找
-A:显示匹配行及后面多少行(grep -nA 3 '^ftp' passwd)
-B:显示匹配行及前面多少行(grep -nB 3 '^ftp' passwd)
-C:显示匹配行前后多少行(grep -nC 3 '^ftp' passwd)
-l:只列出匹配的文件名
-L:列出不匹配的文件名
-e:使用正则匹配
-E:使用扩展正则匹配
^key:以关键字开头(grep -n '^root' passwd)
key$:以关键字结尾(grep -n 'bash$' passwd)
^$:匹配空行(grep -n '^$' passwd )
--color=auto:可以将找到的关键词部分加上颜色显示
-c:以字符为单位进行分割,截取(cut -c1-5 passwd,第1列至第5列,cut -c1,5 passwd,截取第1列和第5列)
-d:自定义分隔符,必须是单个字符,默认为制表符(\t)(cut -d: -f1,7 passwd)
-f:与(-d)一起使用,指定截取哪个区域
runlevel | cut -c3
runlevel | cut -d ' ' -f2
-u:去除重复行(sort -u 3.txt)
-r:降序排列,默认是升序(sort -nr -t: -k3 1.txt,按用户的uid进行降序排序)
-o:将排序结果输出到文件中,类似重定向符号(>)(sort -nr -t: -k3 1.txt -o 2.txt)
-n:以数字排序,默认是按字符排序(sort -n -t: -k3 1.txt)
-t:分隔符
-k:第N列
-b:忽略前导空格
-R:随机排序,每次运行的结果均不同(sort -uR 3.txt)
-i:忽略大小写
-c:统计重复行次数(uniq -c 3.txt )
-d:只显示重复行(uniq -cd 3.txt )
-b:不检查空格
-B:不检查空白行
-i:不检查大小写
-w:忽略所有的空格
--normal:正常格式显示(默认)
-c:上下文格式显示
-u:合并格式显示
1   aaaa
2   111
3   hello world
4   222
5   333
6   bbb
1   aaa
2   hello
3   111
4   222
5   bbb
6   333
7   world
1c1,2 (第一个文件的第1行需要改变(c=change)才能和第二个文件的第1到第2行匹配)
< aaaa(小于号"<"表示左边文件(file1)的文件内容)
---(分隔符)
> aaa(大于号">"表示右边文件(file2)的文件内容)
> hello
3d3(第一个文件的第3行删除(d=delete)后才能和第二个文件的第3行匹配)
< hello world
5d4(第一个文件的第5行删除(d=delete)后才能和第二个文件的第4行匹配)
< 333
6a6,7(第一个文件的第6行添加(a=add)内容后才能和第二个文件的第6到7行匹配)
> 333(需要添加的内容在第二个文件里是333和world)
> world
(前2行主要列出需要比较的文件名和文件的时间戳;文件名前面的符号***表示file1,---表示file2)
*** file1   2020-10-21 10:17:05.343714964 +0800
--- file2   2020-10-21 10:16:27.112637692 +0800
***************(分隔符)
*** 1,6 ****(以***开头表示file1文件,1,6表示1到6行)
! aaaa("!"表示该行需要修改才能与第二个文件匹配)
  111
- hello world("-"表示需要删除该行才能与第二个文件匹配)
  222
- 333("-"表示需要删除该行才能与第二个文件匹配)
  bbb
--- 1,7 ----(以---开头表示file2文件,1,7表示1到7行)
! aaa(表示第一个文件需要修改才能与第二个文件匹配)
! hello(表示第一个文件需要修改才能与第二个文件匹配)
  111
  222
  bbb
+ 333(表示第一个文件需要添加该行才能与第二个文件匹配)
+ world(表示第一个文件需要添加该行才能与第二个文件匹配)
(前2行主要列出需要比较的文件名和文件的时间戳;文件名前面的符号---表示file1,+++表示file2)
--- file1   2020-10-21 10:17:05.343714964 +0800
+++ file2   2020-10-21 10:16:27.112637692 +0800
@@ -1,6 +1,7 @@("-1,6"表示第一个文件的1至6行)
-aaaa("-"表示需要删除该行)
+aaa("+"表示需要添加该行)
+hello
 111
-hello world
 222
-333
 bbb
+333
+world
[root@localhost tmp]# ll -R dir*
dir1:
总用量 0
-rw-r--r--. 1 root root 0 10月 21 11:15 file1
-rw-r--r--. 1 root root 0 10月 21 11:15 file2
-rw-r--r--. 1 root root 0 10月 21 11:15 file3
-rw-r--r--. 1 root root 0 10月 21 11:15 file4
-rw-r--r--. 1 root root 0 10月 21 11:15 file5

dir2:
总用量 0
-rw-r--r--. 1 root root 0 10月 21 11:15 file1
-rw-r--r--. 1 root root 0 10月 21 11:15 file2
-rw-r--r--. 1 root root 0 10月 21 11:15 file3
-rw-r--r--. 1 root root 0 10月 21 11:15 test1
-rw-r--r--. 1 root root 0 10月 21 11:15 test2
[root@localhost tmp]# diff -q dir1 dir2
只在 dir1 存在:file4
只在 dir1 存在:file5
只在 dir2 存在:test1
只在 dir2 存在:test2
1)先找出文件不同,然后输出到一个文件中
[root@localhost tmp]# diff -uN file1 fille2 > file.patch
-u:合并格式显示
-N:将不存在的文件当作空文件
2)将不同内容打补丁到文件1
[root@localhost tmp]# patch file1 file.patch
[root@localhost tmp]# diff file1 file2
[root@localhost tmp]#(没有内容说明两个文件内容一致)
[root@localhost tmp]# cat -n file1
     1  hello world
     2  888
[root@localhost tmp]# cat -n file2
     1  zhang san
     2  999
     3  ooo
[root@localhost tmp]# paste file1 file2
hello world zhang san
888 999
    ooo
[root@localhost tmp]# cat -n file2(所有工具都不会修改原文件的内容)
     1  zhang san
     2  999
     3  ooo
[root@localhost tmp]# paste -d: file1 file2(以冒号":"分隔)
hello world:zhang san
888:999
:ooo
[root@localhost tmp]# paste -s file1 file2
hello world 888(将第一个文件每行内容依次排列,中间默认用tab分隔)
zhang san   999 ooo(将第二个文件每行内容依次排列,中间默认用tab分隔)
-d:删除字符串1中每个字符
-s:删除所有重复出现字符序列,只保留第一个,即将重复出现的字符串压缩为一个字符串
字符串 含义
a-z或[:lower:] 匹配所有小写字母
A-Z或[:upper:] 匹配所有大写字母
0-9或[:digit:] 匹配所有数字
[:alnum:] 匹配所有字母和数字
[:alpha:] 匹配所有字母
[:blank:] 匹配所有水平空格
[:punct:] 匹配所有标点符号
[:space:] 匹配水平或垂直空格
[:cntrl:] 匹配所有控制字符(\f\n\r\t
[root@localhost tmp]# cat 1.txt 
root:x:0:0:root:/root:/bin/bash
[root@localhost tmp]# tr 'a-z' 'A-Z' < 1.txt(将文件中所有的小写字母替换为大写字母)
ROOT:X:0:0:ROOT:/ROOT:/BIN/BASH
[root@localhost tmp]# tr -d 'a-z' < 1.txt (删除文件中所有的小写字母)
::0:0::/://
[root@localhost tmp]# cat 1.txt 
aaabsdsdsdaaabbbbbbc
[root@localhost tmp]# tr -s 'a-z' < 1.txt(匹配所有的小写字母并将重复的子串压缩为一个字符)
absdsdsdabc
^c:终止前台运行的程序
^z:将前台运行的程序挂到后台
^d:退出(等价exit)
^l:清屏
^a或home:光标移到命令行的最前端
^e或end:光标移到命令行的最后端
^u:删除光标前所有字符
^k:删除光标后所有字符
^r:搜索历史命令(常用快捷键!)
*:匹配0或多个任意字符
?:匹配任意单个字符
[list]:匹配list中的任意单个字符
[!list]:匹配除list中的任意单个字符
{string1,string2,...}:匹配string1,string2或更多字符串
[root@localhost tmp]# date +%F
2020-10-21
[root@localhost tmp]# echo "$(date +%F)"
2020-10-21
[root@localhost tmp]# echo '$(date +%F)'
$(date +%F)
[root@localhost tmp]# echo "`date +%F`"
2020-10-21
[root@localhost tmp]# echo $(echo "`date +%F`")
2020-10-21
上一篇下一篇

猜你喜欢

热点阅读