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.
我有一个大约 200GB(tar) 的网站备份。我只想从此备份中提取一个文件。
关于我如何去做这件事的任何想法?
首先,您可以执行此操作以获取所有文件名的列表:
tar tf archive.tar
然后使用这个命令你可以只提取你想要的文件
tar xf archive.tar path/inside/archive/a.txt another/path/b.txt
请注意,您可能需要使用z,j或其他选项,具体取决于您是否使用了以及使用了何种压缩。
z
j