Linux扩展正则表达式及sed生产环境用法

简介:

1、取本机ip地址

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[root@centos6 ~] # ifconfig
eth1      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:AB
           inet addr:10.1.253.95  Bcast:10.1.255.255  Mask:255.255.0.0
           inet6 addr: fe80::20c:29ff:fe35:ddab /64  Scope:Link
           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
           RX packets:378023 errors:0 dropped:0 overruns:0 frame:0
           TX packets:12444 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:1000
           RX bytes:46926222 (44.7 MiB)  TX bytes:1240063 (1.1 MiB)
eth2      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:B5
           inet addr:192.168.226.135  Bcast:192.168.226.255  Mask:255.255.255.0
           inet6 addr: fe80::20c:29ff:fe35:ddb5 /64  Scope:Link
           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
           RX packets:2539 errors:0 dropped:0 overruns:0 frame:0
           TX packets:225 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:1000
           RX bytes:281133 (274.5 KiB)  TX bytes:39650 (38.7 KiB)
lo        Link encap:Local Loopback
           inet addr:127.0.0.1  Mask:255.0.0.0
           inet6 addr: ::1 /128  Scope:Host
           UP LOOPBACK RUNNING  MTU:65536  Metric:1
           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:0
           RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
[root@centos6 ~] # ifconfig |awk -F '[: ]+' 'NR==2{print $4}'
10.1.253.95
[root@centos6 ~] # ifconfig
eth1      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:AB
           inet addr:10.1.253.95  Bcast:10.1.255.255  Mask:255.255.0.0
           inet6 addr: fe80::20c:29ff:fe35:ddab /64  Scope:Link
           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
           RX packets:379965 errors:0 dropped:0 overruns:0 frame:0
           TX packets:12615 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:1000
           RX bytes:47097014 (44.9 MiB)  TX bytes:1264173 (1.2 MiB)
 
eth2      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:B5
           inet addr:192.168.226.135  Bcast:192.168.226.255  Mask:255.255.255.0
           inet6 addr: fe80::20c:29ff:fe35:ddb5 /64  Scope:Link
           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
           RX packets:2541 errors:0 dropped:0 overruns:0 frame:0
           TX packets:227 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:1000
           RX bytes:281535 (274.9 KiB)  TX bytes:40052 (39.1 KiB)
 
lo        Link encap:Local Loopback
           inet addr:127.0.0.1  Mask:255.0.0.0
           inet6 addr: ::1 /128  Scope:Host
           UP LOOPBACK RUNNING  MTU:65536  Metric:1
           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:0
           RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
 
[root@centos6 ~] # ifconfig |head -2
eth1      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:AB
           inet addr:10.1.253.95  Bcast:10.1.255.255  Mask:255.255.0.0
[root@centos6 ~] # ifconfig |head -2 |sed -r 's/^.*addr:(.*)  Bca.*$/\1/g'
eth1      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:AB
10.1.253.95
[root@centos6 ~] # ifconfig |head -2|tail -1 |tr -s ' ' ':' |cut -d: -f4
10.1.253.95
[root@centos6 ~] #

1.1、取出本机所有的IP地址

1
2
3
4
5
6
7
8
9
10
[root@centos6 ~] # ifconfig |tr -cs '[:digit:].' '\n'|sort -t. -k4|tail -8
255.0.0.0
255.255.0.0
255.255.255.0
127.0.0.1
192.168.226.135
10.1.255.255
192.168.226.255
10.1.253.95
[root@centos6 ~] #

2、取各分区利用率的数值

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[root@centos6 ~] # df |grep "sd.*"
/dev/sda3       121455724 3990720 111288700   4% /
/dev/sda1          194241   34082    149919  19%  /boot
/dev/sdb         20511356   44992  19417788   1%  /mnt
[root@centos6 ~] # df |grep "sd.*"|tr -s ' ' ':'
/dev/sda3 :121455724:3990720:111288700:4%:/
/dev/sda1 :194241:34082:149919:19%: /boot
/dev/sdb :20511356:44992:19417788:1%: /mnt
[root@centos6 ~] # df |grep "sd.*"|tr -s ' ' ':'|cut -d: -f1,5
/dev/sda3 :4%
/dev/sda1 :19%
/dev/sdb :1%
[root@centos6 ~] # df |grep "sd.*"|tr -s ' ' ':'|cut -d: -f1,5|sort -nr
/dev/sdb :1%
/dev/sda3 :4%
/dev/sda1 :19%
[root@centos6 ~] #

3、统计/etc/init.d/functions 文件中每个单词出现的次数,并按频率从高到低显示

1
2
3
4
5
6
7
8
9
10
11
[root@centos6 ~] # cat /etc/init.d/functions |tr -cs '[:alpha:]' '\n'|sort|uniq -c |sort-nr
      83  if
      77  then
      75 pid
      73  echo
      72  fi
      61  return
      57 dev
      54  file
      50 n
      46  local

4、/etc/rc.d/init.d/functions或/etc/rc.d/init.d/functions/"  取目录名

1
2
3
[root@centos6 ~] # echo "/etc/init.d/functions"|sed -r 's#^(/.*/)[^/]+/?#\1#g'
/etc/init .d/
[root@centos6 ~] #

4.1、/etc/rc.d/init.d/functions或/etc/rc.d/init.d/functions/"  取基名


1
2
3
[root@centos6 ~] # echo "/etc/init.d/functions/"|sed -r 's#/.*/([^/]+)#\1#g'
functions/
[root@centos6 ~] #



本文转自chengong1013 51CTO博客,原文链接:http://blog.51cto.com/purify/1835797,如需转载请自行联系原作者
相关文章
|
3月前
|
Linux Perl
在Linux中,如何使用请用 cut 或者 awk,sed命令取出 linux 中 eth0 的 IP 地址?
在Linux中,如何使用请用 cut 或者 awk,sed命令取出 linux 中 eth0 的 IP 地址?
|
7天前
|
安全 网络协议 Linux
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。
本文详细介绍了 Linux 系统中 ping 命令的使用方法和技巧,涵盖基本用法、高级用法、实际应用案例及注意事项。通过掌握 ping 命令,读者可以轻松测试网络连通性、诊断网络问题并提升网络管理能力。
27 3
|
1月前
|
Ubuntu Linux
Linux的基础用法
Linux的基础用法
22 6
|
2月前
|
机器学习/深度学习 Linux Perl
Linux文本处理三剑客之sed详解
这篇博客详细讲解了Linux中的文本处理工具sed的使用方法和常用命令。
180 9
Linux文本处理三剑客之sed详解
|
2月前
|
Linux Perl
Linux之sed命令
Linux之sed命令
|
2月前
|
人工智能 监控 Shell
常用的 55 个 Linux Shell 脚本(包括基础案例、文件操作、实用工具、图形化、sed、gawk)
这篇文章提供了55个常用的Linux Shell脚本实例,涵盖基础案例、文件操作、实用工具、图形化界面及sed、gawk的使用。
479 2
|
2月前
|
监控 Linux
Linux系统中du命令与df命令的区别与用法
总的来说,`du` 和 `df` 在磁盘管理中互补使用,能够提供全面的磁盘空间使用信息,帮助用户和管理员有效地监控和管理系统资源。
81 3
|
2月前
|
存储 Ubuntu Linux
linux中的find 命令详细用法
本文介绍了如何将 `find` 命令与 `exec` 结合使用,通过具体示例展示了多种应用场景,如显示文件属性、重命名文件、收集文件大小、删除特定文件、执行工具、更改文件所有权和权限、收集 MD5 值等。文章还探讨了 `{} \;` 和 `{} +` 的区别,并演示了如何结合 `grep` 命令进行内容搜索。最后,介绍了如何在一个 `find` 命令中使用多个 `exec` 命令。这为 Linux 用户提供了强大的文件管理和自动化工具。
|
2月前
|
Linux Perl
6-20|linux sed命令
6-20|linux sed命令
|
3月前
|
Linux Shell Perl
在Linux中,如何使用sed命令进行文本替换?
在Linux中,如何使用sed命令进行文本替换?