1、查找/etc目錄下大于1M且類型為普通文件的所有文件
10多年的工農(nóng)網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應快,48小時及時工作處理。網(wǎng)絡(luò)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整工農(nóng)建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)從事“工農(nóng)網(wǎng)站設(shè)計”,“工農(nóng)網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
[root@centos7 ~]# find /etc/ -type f -size +1M |xargs ls -lh
-rw-r--r--. 1 root root 1.4M Apr 11 2018 /etc/brltty/zh-tw.ctb
-rw-------. 1 root root 3.8M Nov 3 2018 /etc/selinux/targeted/active/policy.kern
-rw-r--r--. 1 root root 1.4M Nov 3 2018 /etc/selinux/targeted/contexts/files/file_contexts.bin
-rw-r--r--. 1 root root 3.8M Nov 3 2018 /etc/selinux/targeted/policy/policy.31
-r--r--r--. 1 root root 7.8M Jan 4 15:58 /etc/udev/hwdb.bin
[root@centos7 ~]#
2、打包/etc/目錄下面所有conf結(jié)尾的文件,壓縮包名稱為當天的時間,并拷貝到/usr/localsrc目錄備份。
[root@centos7 ~]# tar -zvcf `date +%F`.tar.gz /etc/*.conf && cp `date +%F`.tar.gz /usr/local/src/
tar: Removing leading `/' from member names
/etc/asound.conf
/etc/autofs.conf
/etc/autofs_ldap_auth.conf
/etc/brltty.conf
3、利用sed 取出ifconfig命令中本機的IPv4地址
[root@centos7 ~]# ifconfig ens160 |sed -nr '2s/^[^0-9]+([0-9.]+).*/\1/p'
10.0.1.109
[root@centos7 ~]#
4、刪除/etc/fstab文件中所有以#開頭,后面至少跟一個空白字符的行的行首的#和空白字符
[root@centos7 ~]# sed -r 's/^# +(.*)/\1/' /etc/fstab
#
/etc/fstab
Created by anaconda on Sat Jan 4 01:52:46 2020
#
Accessible filesystems, by reference, are maintained under '/dev/disk'
See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/centos-root / xfs defaults 0 0
UUID=24b6bae0-d077-4259-8529-f778c9c120ce /boot xfs defaults 0 0
/dev/mapper/centos-swap swap swap defaults 0 0
5、處理/etc/fstab路徑,使用sed命令取出其目錄名和基名
[root@centos7 ~]# echo /etc/fstab |sed -nr 's@(/.*)/(.*)@\1@p'
/etc
[root@centos7 ~]# echo /etc/fstab |sed -nr 's@(/.*)/(.*)@\2@p'
fstab
[root@centos7 ~]#