boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 请问如何可以看gunzip的text中的一部分
相关主题
in C++ how to write file in gzip format directly?
How to concatenate two .tar.gz files
一个popen加gzip的问题
不会写pipe大虾帮帮忙吧...
java GZip 求助
向硬盘上写大文件的方法
怎么解决大的压缩文件的随机读写?
用python urlopen 抓mitbbs页面的问题
perl, Java, C/C++ 在数据处理和分析中的比较
Don Knuth releases Volume 4, Pre-fascicle 6A [gzipped ps]
相关话题的讨论汇总
话题: gunzip话题: 一部分话题: text话题: 解压话题: 请问
进入Programming版参与讨论
1 (共1页)
e*******e
发帖数: 1837
1
我现在有一个gunzip(.gz)的文档文件(.txt), 在command line下有没有可能只解压或
者直接看一小部分文档? 比如pipe一部分解压文件到more?
谢谢!
t****t
发帖数: 6806
2
zless

【在 e*******e 的大作中提到】
: 我现在有一个gunzip(.gz)的文档文件(.txt), 在command line下有没有可能只解压或
: 者直接看一小部分文档? 比如pipe一部分解压文件到more?
: 谢谢!

e*******e
发帖数: 1837
3
Thanks!

【在 t****t 的大作中提到】
: zless
c*********n
发帖数: 128
4
It is the equivalent of setting the environment variable LESSOPEN to "|
gzip -cdfq %s", and then running less.
http://www.linuxcommand.org/man_pages/zless1.html
我正在纳闷为什么有程序可以真的只"看gunzip的text中的一部分"......

【在 t****t 的大作中提到】
: zless
t*****g
发帖数: 1275
5
or a more convenient equivalence - gzcat

【在 c*********n 的大作中提到】
: It is the equivalent of setting the environment variable LESSOPEN to "|
: gzip -cdfq %s", and then running less.
: http://www.linuxcommand.org/man_pages/zless1.html
: 我正在纳闷为什么有程序可以真的只"看gunzip的text中的一部分"......

1 (共1页)
进入Programming版参与讨论
相关主题
Don Knuth releases Volume 4, Pre-fascicle 6A [gzipped ps]
mac os上有什么好的防火墙软件么?还有android的权限管理软件
C++11使用感受及一些问题
十个包子求助:NodeJS多线程?
A function can be history-sensitive??????
一道C++面试编程题
问个矩阵问题
请教python中如何向文件写入矩阵
在C/Fortran之间传递2维数组
assoicate container的find()
相关话题的讨论汇总
话题: gunzip话题: 一部分话题: text话题: 解压话题: 请问