天天看點

馬哥教育42期第五周作業

1、查找/etc目錄下大于1M且類型為普通檔案的所有檔案

[[email protected] ~]#find /etc/ -size +1M -type f -ls 
68055904 7332 -r--r--r--   1 root     root      7503912 May 14  2019 /etc/udev/hwdb.bin
101790884 3668 -rw-r--r--   1 root     root      3752457 Aug  6  2017 /etc/selinux/targeted/active/policy.kern
68534351 1372 -rw-r--r--   1 root     root      1402267 Aug  6  2017 /etc/selinux/targeted/contexts/files/file_contexts.bin
35976456 3668 -rw-r--r--   1 root     root      3752457 Aug  6  2017 /etc/selinux/targeted/policy/policy.30
101305766 1336 -rw-r--r--   1 root     root      1367395 Aug  7  2017 /etc/brltty/zh-tw.ctb
           

2、打包/etc/目錄下面所有conf結尾的檔案,壓縮包名稱為當天的時間,并拷貝到/usr/local/src目錄備份。

find /etc/ -name *.conf |xargs tar zcvf /usr/local/src/`date +%F`.tar.gz
tar -tf /usr/local/src/2019-12-08.tar.gz  #####不解壓檢視壓縮檔案内容
           

3、利用sed 取出ifconfig指令中本機的IPv4位址

[[email protected] ~]#ifconfig |sed -nr '/(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])/p'|tr -s " "|cut -d " " -f3
192.168.11.12
127.0.0.1
192.168.122.1
           

4、删除/etc/fstab檔案中所有以#開頭,後面至少跟一個空白字元的行的行首的#和空白字元

vim /etc/fstab
:%s/^#[[:space:]]\+//g
           

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

[[email protected] ~]#echo /etc/fstab/ |sed -r 's/(.*\/)([^/]+\/?$)/\2/'
fstab/
[[email protected] ~]#echo /etc/fstab/ |sed -r 's/(.*\/)([^/]+\/?$)/\1/'
/etc/
           

繼續閱讀