So there was a file dummy1
. I created a symlink:
ln -snf dummy dummy1
and confused source and target file, as I actually wanted dummy
to point to dummy1
not vice versa.
So now dummy1
is a symlink.
Is the original dummy1
file removed by doing this? Any way to get it back?
I would expect to get it back somehow, because otherwise that would be strange, as even rm
command asks for confirmation.
Thank you