(取消/取消)在 bash 中压缩字符串?
是否可以使用 stdin/stdout 在 bash 中压缩/解压缩字符串?
我尝试过这个,但显然不支持?
hey=$(echo "hello world" | gzip -cf)
echo $hey # returns a compressed string
echo $hey | gzip -cfd
gzip: stdin is a multi-part gzip file -- not supported
我不太熟悉 Linux,但我阅读了其他压缩实用程序手册页,但找不到解决方案?
Is it possible to compress/decompress a string in bash using stdin/stdout ?
I tried this but apparently it is not supported ?
hey=$(echo "hello world" | gzip -cf)
echo $hey # returns a compressed string
echo $hey | gzip -cfd
gzip: stdin is a multi-part gzip file -- not supported
I'm not well versed in linux but I read other compression utilities man pages and couldn't find a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 33% 的压缩率损失对您来说是可以接受的,那么您可以存储 base64 编码的压缩数据:
它可以工作,但每 3 个(压缩的)字节将存储在 4 个字节的文本中。
If 33% compression rate loss is acceptable for you, then you can store base64 encoded compressed data:
It will work, but each 3 (compressed) bytes will be stored in 4 bytes of text.
当你这样做时:
你在变量
hey
中没有与在/tmp/myfile
创建者中相同的字节:你得到“gzip:stdin是一个多-部分 gzip 文件 -- 不支持”错误只是因为您损坏了无法解压缩的压缩数据。
VAR=$(...)
结构是为处理文本而设计的。例如,这就是为什么您会获得额外的尾部修剪。When you do:
You don't have same same bytes in variable
hey
as you have in/tmp/myfile
created by:You get "gzip: stdin is a multi-part gzip file -- not supported" error simply because you have broken compressed data which cannot be uncompressed.
The
VAR=$(...)
construction is designed for working with text. This is why you get extra trailing trim for example.