Hard link not works under MacOS in GUI mode
- by AntonAL
Hi, i faced a little strange behavior, while using hard links.
From terminal, i create a text file 1.txt and a hard link "to this file"
nano 1.txt
mkdir dir
ln 1.txt ./dir/
I check the resulting hard link and see that its contents are the same as of the original file.
less ./dir/1.txt
I change the initial file ...
nano 1.txt
... and see,…