**1、查找/etc目录下大于1M且类型为普通文件的所有文件
命令:find /etc -size +1M -type f |xargs ls -1h
Linux第5周作业

2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。
[root@Centos7 ~]# find /etc -type f -name "*.conf"|xargs tar -zcvf /usr/loxal/src/'date +%F'.tar.gz
Linux第5周作业_第1张图片

3、利用sed 取出ifconfig命令中本机的IPv4地址
[root@Centos7 ~]# ifconfig ens33 | sed -n '/inet /s#(.inet )(.)( n.*)#\2#gp'

Linux第5周作业
4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符

[root@Centos7 ~]# sed -nr 's/^#[[:space:]]+(.)/\1/p' /etc/fstab
Linux第5周作业_第2张图片
5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
Linux第5周作业_第3张图片
[root@Centos7 ~]# echo /etc/fstab | sed -nr 's#(.
)/.$#\1#p'
[root@Centos7 ~]# echo /etc/fstab | sed -nr 's#.
/([^/]+)/?$#\1#p'