14

如果我的 .zshrc 文件是 ~/.dotfiles/zsh/.zshrc,如何创建符号链接以使文件显示为 ~/.zshrc?

4

3 回答 3

25

cd不需要 Alexej 答案中的步骤,因为您可以显式调用 ln -s target destination

ln -s ~/.dotfiles/zsh/.zshrc ~/.zshrc
于 2013-07-30T23:00:49.353 回答
3

跑:

cd ~/ ; ln -s ~/.dotfiles/zsh/.zshrc
于 2013-07-30T00:16:03.897 回答
0

对我来说,当使用符号链接的相对路径时,它可能会显示错误: ~/.zshrc: No such file or directory erroras @astephen2。您应该更改为绝对路径然后它工作正常

于 2021-02-04T16:00:48.593 回答