如何符号链接别名和函数点文件

发布于 2025-01-11 21:30:36 字数 267 浏览 0 评论 0原文

我试图创造自己的别名。我的 ~/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

要走干脆点 2025-01-18 21:30:36

确保您在 .bashrc 或 .zshrc 中获取别名文件

,.bashrc 或 .zshrc 中的代码应如下所示:

if [ -f ~/dotfiles/.aliases ];
then source ~/dotfiles/.aliases
fi

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:

if [ -f ~/dotfiles/.aliases ];
then source ~/dotfiles/.aliases
fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文