agという名前の圧縮ファイルがあり、その内容には名前があり、読み取ったtest.tgz
ファイルがあるとします。hello.txt
hello world
。を使用して解凍し、.を読むことがtar -zxf
できるようにいくつか修正します。hello.txt
hello.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
詳細を追加してください。