tar는 오래된 파일 내용의 압축을 푼다.

tar는 오래된 파일 내용의 압축을 푼다.

ag라는 이름의 압축 파일이 있고 그 내용에는 이름이 있고 읽은 test.tgz파일이 있다고 가정해 보겠습니다 .hello.txthello world

. 을 사용하여 압축을 풀고 .을 읽을 tar -zxf수 있도록 일부 수정하겠습니다 .hello.txthello.txt is modified

문제는 원본 파일의 압축을 풀려고 하면 test.tgz압축이 풀린 파일이hello.txt 아직읽다 hello.txt is modified. 압축이 풀린 파일을 읽을 수 없는 이유는 무엇입니까 hello world?

답변1

재현할 수 없습니다.

$ cd "$(mktemp --directory)"
$ echo 'hello world' > hello.txt
$ tar -czf test.tgz hello.txt
$ tar -zxf test.tgz
$ echo 'hello world is modified' > hello.txt
$ tar -zxf test.tgz
$ cat hello.txt
hello world

자세한 내용을 추가해주세요.

관련 정보