隨筆5_tww

1.查找/etc目錄下大於1M且類型爲普通文件的全部文件  linux

[13:38:57 root@CentOS7 ~]#find /etc -size +1M -type f -ls 
67180200 7892 -r--r--r-- 1 root root 8080746 May 16 08:46 /etc/udev/hwdb.bin
202800259 3808 -rw------- 1 root root 3896194 Nov 3 2018 /etc/selinux/targeted/active/policy.kern
1272321 1380 -rw-r--r-- 1 root root 1412826 Nov 3 2018 /etc/selinux/targeted/contexts/files/file_contexts.bin
202800279 3808 -rw-r--r-- 1 root root 3896194 Nov 3 2018 /etc/selinux/targeted/policy/policy.31
134844795 1336 -rw-r--r-- 1 root root 1367395 Apr 11 2018 /etc/brltty/zh-tw.ctb

2.打包/etc/目錄下面全部conf結尾的文件,壓縮包名稱爲當天的時間,並拷貝到/usr/local/src目錄備份。  bash

[14:01:38 root@CentOS7 ~]#tar -zcvf /usr/local/src/`date +%F`.tar.gz /etc/*.conf

3.利用sed 取出ifconfig命令中本機的IPv4地址  ide

IP顯示以下圖所示  spa

image  

如下是幾種取出ip地址的方法:3d

[23:33:50 root@CentOS7 /etc]#ifconfig ens33|sed  -n '2p'|tr -s " " :|cut -d: -f3
192.168.47.66
[23:41:13 root@CentOS7 /etc]#ifconfig ens33|sed  -n '2p'|sed 's/^.*inet //;s@ netmask.*$@@'
192.168.47.66
[00:00:07 root@CentOS7 /etc]#ifconfig ens33|sed  -n '2p'|sed  -e 's/^.*inet //' -e 's@ netmask.*$@@'
192.168.47.66
[23:55:13 root@CentOS7 /etc]#ifconfig ens33|sed -n '2p'|sed -r  's/(^.*inet )([0-9.]+)( .*$)/\2/'
192.168.47.66
[23:56:04 root@CentOS7 /etc]#ifconfig ens33|sed -n '2p'|sed -r  's/(^[^0-9]+)([0-9.]+)( .*$)/\2/'
192.168.47.66
[23:41:25 root@CentOS7 /etc]#ifconfig ens33|sed -n  '2s/^.*inet //;s@ netmask.*$@@p'
192.168.47.66  
[23:56:43 root@CentOS7 /etc]#ifconfig ens33|sed -nr  '2s/(^[^0-9]+)([0-9.]+)( .*$)/\2/p'
192.168.47.66

4.刪除/etc/fstab文件中全部以#開頭,後面至少跟一個空白字符的行的行首的#和空白字符  blog

[21:43:30 root@CentOS7 ~]#sed  's@^#[[:space:]]\+@@' /etc/fstab

顯示結果以下圖所示:  
ip

image  

 5.處理/etc/fstab路徑,使用sed命令取出其目錄名和基名  get

[21:16:54 root@CentOS7 /etc]#echo /etc/fstab  |sed -r 's@(^/.*/)([^/]+)/?$@\1@'
/etc/
[21:17:01 root@CentOS7 /etc]#echo /etc/fstab  |sed -r 's@(^/.*/)([^/]+)/?$@\2@'
fstab
相關文章
相關標籤/搜索