cp 命令是否有任何选项可以覆盖作为符号链接的目标文件?
问题如下:
[dthnguyen@dthnguyen test]$ ls -l
total 8
-rw-rw-r--. 1 dthnguyen dthnguyen 5 Feb 21 09:07 a.txt
lrwxrwxrwx. 1 dthnguyen dthnguyen 7 Feb 21 08:55 b.txt -> ./a.txt
-rw-rw-r--. 1 dthnguyen dthnguyen 5 Feb 21 08:55 c.txt
[dthnguyen@dthnguyen test]$ cp c.txt b.txt
复制后,a.txt 有 c.txt 的内容,b.txt 仍然链接到 a.txt。预期的结果是 a.txt 包含旧内容,b.txt 是一个新的常规文件,与 c.txt 具有相同的内容。