Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道目录 ~/foo 和 ~/bar 已经存在。
我知道“cp -R ~/foo ~/bar”会递归地将 ~/foo 目录复制到 ~/bar 目录中,这可能会导致 ~/bar/foo 被创建。
但是如果 foo 是一个目录的符号链接呢?我可以让 cp 命令复制符号链接指向的目录,而不是符号链接本身吗?
因为使用上面的命令,如果 foo 是一个符号链接,那么 ~/bar/foo 实际上只是一个符号链接。
来自man cp:
man cp
-L, --dereference always follow symbolic links in SOURCE
像这样使用 -L 选项:
cp -RL ~/foo ~/bar