linux-文本查看和处理命令

一、文本处理三剑客介绍

通配符简单说明
*:匹配任意个字符
?:匹配任意一个字符
[abcd]:abcd四个字母中的一个
[^abcd]:abcd四个字母以外的其它字母
[0-9]:匹配0-9数字
[[:digit:]] :匹配数字
[[:lower:]]:匹配小写字母
[[:upper:]]:匹配大写字母
[[:alpha:]]:匹配字母

grep、sed、awk都支持正则表达式
grep:主要用于搜索某些字符串;
sed:用于处理文本 ,修改文本内容;
awk:用于处理文本 ,修改文本内容;

二、查看文本的命令

image.png

image.png

2.1、cat、tac、rev、head、tail命令

[root@localhost /home/unnet/data]#cat -n txt.txt 
     1  查明;测定;准确算出 
     2  to discover the facts about sth; to calculate sth exactly
     3  
     4  同义词: establish
     5  [VN] An inquiry was set up to determine the cause of the accident.
     6  
     7  已展开调查以确定事故原因。
     8  
     9  [V wh-] We set out to determine exactly what happened that night.
    10  
    11  我们着手查明那天晚上发生的事情。
    12  
[root@localhost /home/unnet/data]#tac txt.txt 

我们着手查明那天晚上发生的事情。

[V wh-] We set out to determine exactly what happened that night.

已展开调查以确定事故原因。

[VN] An inquiry was set up to determine the cause of the accident.
同义词: establish

to discover the facts about sth; to calculate sth exactly
查明;测定;准确算出 
[root@localhost /home/unnet/data]#echo {a..e}
a b c d e
[root@localhost /home/unnet/data]#echo {a..e} | rev
e d c b a

2.2、more、less命令

image.png

more和less用于文件内容较多时分页查看;

image.png
[root@localhost /home/unnet/data]#head -n 5 txt.txt 
查明;测定;准确算出 
to discover the facts about sth; to calculate sth exactly

同义词: establish
[VN] An inquiry was set up to determine the cause of the accident.
[root@localhost /home/unnet/data]#tail -n 5 txt.txt 

[V wh-] We set out to determine exactly what happened that night.

我们着手查明那天晚上发生的事情。

2.3、生成随机口令字符串

[root@localhost ~]#whatis tr
tr (1)               - translate or delete characters

[root@localhost ~]#cat /dev/urandom | tr -dc "a-zA-Z0-9" | head -c 10
85zEIvB20E
[root@localhost ~]#

2.4、cut命令

image.png
[root@localhost ~]#whatis cut
cut (1)              - remove sections from each line of files
[root@localhost ~]#cut --help
Usage: cut OPTION... [FILE]...
Print selected parts of lines from each FILE to standard output.

Mandatory arguments to long options are mandatory for short options too.
  -b, --bytes=LIST        select only these bytes
  -c, --characters=LIST   select only these characters
  -d, --delimiter=DELIM   use DELIM instead of TAB for field delimiter
  -f, --fields=LIST       select only these fields;  also print any line
                            that contains no delimiter character, unless
                            the -s option is specified
  -n                      with -b: don't split multibyte characters
      --complement        complement the set of selected bytes, characters
                            or fields
  -s, --only-delimited    do not print lines not containing delimiters
      --output-delimiter=STRING  use STRING as the output delimiter
                            the default is to use the input delimiter
      --help     display this help and exit
      --version  output version information and exit

Use one, and only one of -b, -c or -f.  Each LIST is made up of one
range, or many ranges separated by commas.  Selected input is written
in the same order that it is read, and is written exactly once.
Each range is one of:

  N     N'th byte, character or field, counted from 1
  N-    from N'th byte, character or field, to end of line
  N-M   from N'th to M'th (included) byte, character or field
  -M    from first to M'th (included) byte, character or field

With no FILE, or when FILE is -, read standard input.
[root@localhost ~]#head -2 /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
[root@localhost ~]#cut -d: -f2 /etc/passwd | head -2
x
x
[root@localhost ~]#cut -d: -f1,2 /etc/passwd | head -2
root:x
bin:x
[root@localhost ~]#cut -d: -f1,2,5-7 /etc/passwd | head -2
root:x:root:/root:/bin/bash
bin:x:bin:/bin:/sbin/nologin

####取磁盘利用率那一列
[root@localhost ~]#df
Filesystem              1K-blocks     Used Available Use% Mounted on
/dev/mapper/centos-root 258994628 49085980 209908648  19% /
devtmpfs                  3992736        0   3992736   0% /dev
tmpfs                     4004628        0   4004628   0% /dev/shm
tmpfs                     4004628   411180   3593448  11% /run
tmpfs                     4004628        0   4004628   0% /sys/fs/cgroup
/dev/sda1                 1038336   189832    848504  19% /boot

[root@localhost ~]#df | tr -s " " % | cut -d% -f5
Use
19
0
0
11
0
19
###取网卡的IP地址
[root@localhost ~]#ifconfig ens192
ens192: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 172.20.4.56  netmask 255.255.255.0  broadcast 172.20.4.255
        inet6 fe80::3417:4b84:e33d:481b  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:ff:e1:49  txqueuelen 1000  (Ethernet)
        RX packets 64168615  bytes 35499908325 (33.0 GiB)
        RX errors 0  dropped 606  overruns 0  frame 0
        TX packets 23099415  bytes 10478735183 (9.7 GiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[root@localhost ~]#ifconfig ens192 | head -2 | tail -1 | tr -s " " : | cut -d: -f2
inet
[root@localhost ~]#ifconfig ens192 | head -2 | tail -1 | tr -s " " : | cut -d: -f3
172.20.4.56

2.5、paste命令

image.png
[root@localhost /home/unnet/data]#cat a.txt
172.20.4.56
172.20.4.57
172.20.4.58
172.20.4.59
172.20.4.60
[root@localhost /home/unnet/data]#cat b.txt 
a
b
c
d
e
[root@localhost /home/unnet/data]#whatis paste
paste (1)            - merge lines of files
[root@localhost /home/unnet/data]#paste -d: a.txt b.txt 
172.20.4.56:a
172.20.4.57:b
172.20.4.58:c
172.20.4.59:d
172.20.4.60:e

2.6、wc命令

image.png
-rw-r--r-- 1 root webs 60 Jul  4 15:48 a.txt
[root@localhost /home/unnet/data]#whatis wc
wc (1)               - print newline, word, and byte counts for each file
###5行 5个单词 60字节
[root@localhost /home/unnet/data]#wc a.txt 
 5  5 60 a.txt
[root@localhost /home/unnet/data]#ll a.txt 

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,313评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,369评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,916评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,333评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,425评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,481评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,491评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,268评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,719评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,004评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,179评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,832评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,510评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,153评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,402评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,045评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,071评论 2 352

推荐阅读更多精彩内容