練習
1、查找/etc目錄下大于1M且類型為普通文件的所有文件
find /etc -size +1M -type f
2馏谨、打包/etc/目錄下面所有conf結(jié)尾的文件别渔,壓縮包名稱為當天的時間,并拷貝到/usr/local/src目錄備份惧互。
find /etc -name "*.conf" -type f| xargs tar -zcvf /usr/local/src/`date +%F`.tar.gz
3哎媚、利用sed 取出ifconfig命令中本機的IPv4地址
ifconfig eth0|sed -n '2p'|sed -r 's/.*inet(.*)netmask.*/\1/'
4、刪除/etc/fstab文件中所有以#開頭喊儡,后面至少跟一個空白字符的行的行首的#和空白字符
刪除/etc/fstab文件中所有以'#'開頭拨与,后面至少跟一個空白字符的行:
輸出:
sed '/^#[[:space:]]/d' /etc/fstab
刪除文件內(nèi)容
sed -i '/^#[[:space:]]/d' /etc/fstab
5、處理/etc/fstab路徑,使用sed命令取出其目錄名和基名
目錄名:echo '/etc/fstab'|sed -r 's@^/(.*)/(.*)@\1@'
基名:echo '/etc/fstab'|sed -r 's@^/(.*)/(.*)@\2@'