tar는 압축 파일에 절대 하위 디렉터리를 생성합니다.

tar는 압축 파일에 절대 하위 디렉터리를 생성합니다.

.My 폴더에 tar하위 폴더 와 .zstdab

나는 tar이것을 사용하고 있습니다 :

tar --zstd -cvf /dest/path/to/output/archive.tar.zstd /full/path/to/src/folder

그러나 이로 인해 단순히 archive.tar.zstd포함 되는 것이 /full/path/to/src/folder/아니라folder

어떻게 해결할 수 있나요?

답변1

( )를 디렉터리와 tar 폴더 cd로 변경하면 됩니다./full/path/to/src

tar --zstd -cvf /dest/path/to/output/archive.tar.zstd folder

이게 가장 간단하지만 다른 방법도 있어요

관련 정보