Faça cp
remover o arquivo de destino antes de copiar:
$ ln -s /random/file f
$ cp -f a f
cp: not writing through dangling symlink ‘f’
$ cp --remove-destination a f
$ diff a f && echo yes
yes
Em man cp
:
--remove-destination
remove each existing destination file before attempting to open
it (contrast with --force)