典雅歌曲

文章
6
资源
0
加入时间
2年10月21天

find 与 tar命令连用

find 与 tar命令连用  今天打包日志时,用find -mtime -1 -type f -exec tar -cvf log.tar {} \; 发现只打包了最后一个文件,应该是tar的c参数,每次都创建一个新的文件,想了下用r参数代替,没有问题了 find -mtime -1 -type f -exec tar -cvf log.tar {} \;...