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.
我有一个非常大的“tar.gz”存档(~50 GB),我想知道 tar 是否有可能跳过处理 N 个字节或类似的东西,或者至少让 tar 开始从end 而不是从头开始阅读。
我当然可以,tar xvf archive.tar.gz path/to/file但是这个命令将永远持续下去,所以我希望找到一种更快的方法来解决它。
tar xvf archive.tar.gz path/to/file
谢谢。