Chinaunix首页 | 论坛 | 博客
  • 博客访问: 147957
  • 博文数量: 22
  • 博客积分: 428
  • 博客等级: 下士
  • 技术积分: 281
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-14 14:28
文章分类

全部博文(22)

文章存档

2013年(7)

2012年(15)

分类: LINUX

2012-07-10 16:09:45

1.使用tar打包与解包
tar -cf archive.tar foo bar  # Create archive.tar from files foo and bar.
tar -xf archive.tar          # Extract all files from archive.tar.

2.使用tar压缩或者解压缩bzip2格式文件
tar -jxvf archive.bzip2
tar -jcvf archive.bzip2 foo bar

3.使用tar压缩或者解压缩gzip格式文件
tar -zxvf archive.gzip
tar -zcvf archive.gzip foo bar
阅读(1632) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~