Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 C 语言编写一个获取 .tar.gz 数据传输的函数,当我得到数据时,我应该检查传输是否完成以及数据是否有效,所以关于检查 gzip 数据完整性的任何提示?
问候
gunzip -t检查压缩文件的完整性。
gunzip -t
如果您只是下载一个 tarball,那么您可以在另一端对其进行 md5sum 然后检查。