如何在不继承/ path / to / folder的情况下压缩目录?


Answers:


19

tar -C /path/to/folder -cvjf /path/for/acrhive.tar.bz2 source

-C (大写)表示“更改目录”,因此您的文件规范相对于随提供的路径 -C


请记住,您为“源”提供的路径是相对于“ -C”的。就像@thinice所写的一样,只是即使您使用“ -C”时仍提供绝对路径而不是相对路径,也不会得到所需的结果。
GuyPaddock

4

很多方法可以做到这一点,但这可能是最简单的:

cd /path/to/folder
tar -cvjf /past/to/destination.tar.bz2 source
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.