如何符号链接别名和函数点文件
我试图创造自己的别名。我的 ~/dotfiles
中有这个:
alias hello="echo Hello"
我尝试符号链接这个:
ln -sn "~/dotfiles/.alias" ~
但是在此之后,当我运行我的别名时,什么也没有发生 home 中是否有别名可以对其进行符号链接的路径?
I trying to make my own alises. I have this in my ~/dotfiles
:
alias hello="echo Hello"
I try to symlink this:
ln -sn "~/dotfiles/.alias" ~
But after this when i run my alias nothing happens
Is there a path for aliases in home to symlink it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您在 .bashrc 或 .zshrc 中获取别名文件
,.bashrc 或 .zshrc 中的代码应如下所示:
Make sure you are sourcing your aliases file in your .bashrc or .zshrc
the code for that in your .bashrc or .zshrc should look something like this: