标签:本机 处理 oca text conf 查找 ubi roo code
1、查找/etc目录下大于1M且类型为普通文件的所有文件[root@jubian520 ~]# find /etc -type f -size +1M
/etc/udev/hwdb.bin
/etc/selinux/targeted/contexts/files/file_contexts.bin
/etc/selinux/targeted/policy/policy.30
/etc/selinux/targeted/active/policy.kern
2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。
[root@jubian520 src]# find /etc/ -name "*conf" |xargs tar czvf $(date +%F).tar.gz && cp -a $(date +%F).tar.gz /usr/local/src/ ```
3、利用sed 取出ifconfig命令中本机的IPv4地址
[root@jubian520 ~]# ifconfig |sed -nr ‘2s/(^[^0-9]+)([0-9.]+)( .*$)/\2/p‘ `
172.16.65.99
4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符
[root@jubian520 ~]# sed ‘/#/d;/^$/d‘ /etc/fstab
UUID=59d9ca7b-4f39-4c0c-9334-c56c182076b5 /
5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
[root@jubian520 ~]# echo "/etc/fstab" |sed -r ‘s@(^/./)([^/]+/?)@\1@‘
/etc/
[root@jubian520 ~]# echo "/etc/fstab" |sed -r ‘s@(^/./)([^/]+/?)@\2@‘
fstab
标签:本机 处理 oca text conf 查找 ubi roo code
原文地址:https://blog.51cto.com/12514160/2510200