摘要: 一、Linux系统常见的压缩命令 1.gzip,zcat 将/etc/man.config复制到/tmp,并以gzip压缩 cd /tmpcp /etc/man.config .gzip -v man.config —— -v :显示出原文件/压缩文件的压缩比等信息 zcat man.config.gz—— 读出压缩文件的内容 gzip -d man.config.gz —— -d :解压缩 2. bzip2,bzcat 将/tmp/man.config 以 bzip2压缩: bzip2 -z man.config 读取压缩文件的内容: bzcat man.config.bz2 解压缩:bzi 阅读全文
posted @ 2011-07-10 14:37 爱无限 阅读(326) 评论(0) 推荐(0) 编辑