This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这是使用简单的 LZW 压缩,这是 gzip 之前在 Unix 和类 Unix 系统上使用最广泛的压缩算法。您应该能够使用 ncompressuncompress 程序解压缩它> 包,自 20 世纪 80 年代以来就已经存在,或者使用gunzip,因为它也包含对这种旧格式的支持。然而,正常的文件扩展名是
.Z
;它无法识别.cmpr
。您可以重命名该文件或使用诸如gunziparchive.out
之类的命令。This is using simple LZW compression, which was the most widely used compression algorithm on Unix and Unix-like systems prior to gzip. You should be able to uncompress it using the old
uncompress
program from the ncompress package, which has been around since the 1980s, or using gunzip since it also includes support for this older format. However the normal file extension is.Z
; it won't recognize.cmpr
. You can either rename the file or use a command likegunzip <archive.cmpr >archive.out
.