如果我的.zshrc文件是〜/ .dotfiles / zsh / .zshrc,如何创建符号链接以使文件显示为〜/ .zshrc?
答案 0 :(得分:9)
不需要Alexej答案中的cd
步骤,因为您可以明确地调用ln -s 目标目标。
ln -s ~/.dotfiles/zsh/.zshrc ~/.zshrc
答案 1 :(得分:2)
运行:
cd ~/ ; ln -s ~/.dotfiles/zsh/.zshrc
答案 2 :(得分:0)
对我来说,当使用符号链接的相对路径时,它会显示错误: ~/.zshrc: No such file or directory error
as @astephen2。您应该更改为绝对路径然后它工作正常