文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>tar

tar

时间:2007-01-16  来源:zhaoyangcom

tar命令小结
1、压缩命令
将整个 /etc 目录下的文件全部打包成为 /tmp/etc.tar
[root@linux ~]# tar -cvf /tmp/etc.tar /etc 仅打包,不压缩
[root@linux ~]# tar -zcvf /tmp/etc.tar.gz /etc 打包后,以 gzip 压缩
[root@linux ~]# tar -jcvf /tmp/etc.tar.bz2 /etc 打包后,以 bzip2 压缩
注意:在参数 f之后的文件名是自己取的,习惯上都用*.tar来做为辨识
  2、查看压缩文件内容命令
[root@linux ~]# tar -ztvf /tmp/etc.tar.gz
  3、将/etc目录下面的文件备份,并且保存其权限
[root@linux ~]# tar -zcvpf /tmp/etc.tar.gz /etc
  4、解压命令
tar zxf ab.tar.gz 将当前目录下的ab.tar.gz解压到ab目录下
  5、将/home内,比2005/06/01新的档案备份
[root@linux ~]# tar -N '2005/06/01' -zcvf home.tar.gz /home
 
6、压缩/root/shell文件夹,但排除/root/shell/c目录
[root@linux ~]# tar --exclude /root/shell/c -cpPf shell.tar /root/shell/*
  7、压缩/root/shell文件夹,但排除/root/shell/a、/root/shell/b两个目录
在BASH下
[root@linux ~]# shopt -s extglob
[root@linux ~]# tar -zcvf a.tgz !(a|b)
在SH下
[root@linux ~]# find . -maxdepth 1 ! \( -name "a" -o -name "b" -o -name "." \) >file
[root@linux ~]# tar -zcvf a.tgz -T file
 
相关阅读 更多 +
排行榜 更多 +
蓝猫天气

蓝猫天气

生活实用 下载
手里剑冲刺3D

手里剑冲刺3D

休闲益智 下载
儿童英文绘本

儿童英文绘本

学习教育 下载