Is there any way to force cp
(Bash 4.2.5, Ubuntu 12.04) to copy onto a dangling symlink?
cp a-file path/to/danling/symlink/a-file
cp: not writing through dangling symlink `path/to/danling/symlink/a-file`
cp -f
seems to be impotent in this case and results in the same message.
Make
cp
remove the target file before copying:From
man cp
:Just use
unlink theSymLink
wheretheSymLink
is the actual symlink, then try again