.My 폴더에 tar
하위 폴더 와 .zstd
a
b
나는 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
이게 가장 간단하지만 다른 방법도 있어요