Fortran77 或更高版本中是否有解压文件的命令?
我有一个压缩文件,我想解压缩它。 你知道是否有命令或者我需要遵循另一条路径吗?
I have a file that is compressed and I want to decompress it.
Do you know if there is a command or do I need to follow another path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
FORTRAN 77 中没有内置命令,但您可以使用 UNIX 命令
gzip、gunzip 来压缩/解压缩文件(假设您在 UNIX 上运行)。
There isn't one built into FORTRAN 77, but you can shell out to the UNIX commands
gzip, gunzip to compress/decompress a file (assuming you are running on UNIX).
这对您有帮助吗?
Does this help you?