[root@centos8 data]$find /etc -name *.conf -type f -print0 | xargs -0 tar -cvf `date +%F`.tar
[root@centos8 data]$cp 2020-12-24.tar /usr/local/src
[root@centos8 data]$ls /usr/local/src
2020-12-24.tar
//一条命令
file_name=$(date +%F).tar;find /etc -name *.conf -type f -print0 | xargs -0 tar -cvf $file_name;cp $file_name /usr/local/src/
5、查找当前系统上没有属主或属组,且最近一个周内曾被访问过的文件或目录
[root@centos8 dir1]$find / \( -nouser -o -nogroup \) -atime -7
find: ‘/proc/3739/task/3739/fd/9’: No such file or directory
find: ‘/proc/3739/task/3739/fdinfo/9’: No such file or directory
find: ‘/proc/3739/fd/8’: No such file or directory
find: ‘/proc/3739/fdinfo/8’: No such file or directory
/home/mandriva
/home/mandriva/.bash_logout