I created dir testdirectory test, created a file 1.txt1.txt in the test. dirtest, wrote 'Before' in this file. thenThen I went
cd .. and used the command:
tar -cvzf ./test.tgz ./test Then I entered the test dir again. Opened the 1.txt1.txt file again. Changed content to "After". I saved the file and changed chmod to read only by executing:
chmod -w ./1.txt So for now my 1.txt1.txt is read only. Then I go up
cd .. and extract the test.tgztest.tgz archive.
tar -xvzf ./test.tgz Then I go again to test dir, do
cat 1.txt and get "Before".
IsIt is not logical, that itthis happens ,since since the file was set to be read-only. Why does it happen?