1。查看tar文件内容列表
tar -tf file.tar
2。排除某目录或文件进行压缩(如下:排除bbs目录)
tar -czvf file.tgz file/* --execlude file/bbs
3。tar到某指定目录
tar -xzvf file.tgz -C /tmp/file/
4。用tar进行备份(如下:备份所有在上星期天4点半后更新过的文件)
tar -N `date -d 'Last Sunday' +%F` 04:30:00 -czvf file.tgz file/*
待补充。。。
阅读(692) | 评论(0) | 转发(0) |