Read the statement by Michael Teeuw here.
I broke something
-
Ok, I read the man page but still don’t get it, even in french :D :(
You’re saying that if the root file is modified, it also modifies the linked one(s) or does it make another copy ?
Cause it would be perfect in that case, keeping track of every modification to be able to step back.Thanks for your explanations :)
-
@killerjoe34 no, the link makes it look like all the secondary files ARE the root file. so actually changing ANY changes them all, there is ONLY one actual file. but erasing the linked file does NOT erase the root file.
try this
mkdir ~/foo mv ~/MagicMirror/config/config.js foo cd ~/MagicMirror/config ln -s ~/foo/config.js config.js
now you have your file in ~/foo
but it LOOKS like it is also in ~/MagicMirror/configedit one, change the date/time format
restart MM
voila
edit the other one and change it back
restart MM -
-
@killerjoe34 you can also link folders
if you do (in the config folder where I just set a link)
ls -laF
will show u the file is linked, and where to
-
@sdetweil said in I broke something:
@killerjoe34 you can also link folders
if you do (in the config folder where I just set a link)
ls -laF
will show u the file is linked, and where to
Ok, I’ll have a look at that, thx again !