查找home目录下 ,最近20天修改的常规文件:
find /home/ -type f -mtime -20 -ls > /root/result.txt
查找home目录下 ,20天前修改的常规文件:
find /home/ -type f -mtime +20 -ls > /root/result.txt
查找home目录下 ,最近20天修改的常规文件:
find /home/ -type f -mtime -20 -ls > /root/result.txt
查找home目录下 ,20天前修改的常规文件:
find /home/ -type f -mtime +20 -ls > /root/result.txt