linux cp命令&删除N天前文件

in 后端 with 0 comment

经常使用cp命令来备份

cp -r -p source dest

-r 递归
-p 保留时间和权限

find /www/logs -mtime +30 -name "*.txt" -exec rm -rf {} \;
Comments are closed.