如何快速创建具有绝对路径的别名?

发布于 2024-07-18 08:14:56 字数 285 浏览 5 评论 0原文

我在创建别名时经常犯错误:

ln -S $Personal/Books $Buy/Books      (1)

相反,我必须编写整个路径才能使最后一个命令正常工作:

ln -S /Users/user/something/.../Books /Users/user/something/.../Books     (2)

我真的很希望得到类似于 (1) 的东西。 做(2)非常耗时。 如何快速创建别名的绝对路径?

I often make mistakes in making aliases:

ln -S $Personal/Books $Buy/Books      (1)

Instead, I have to write the whole path to get the last command working:

ln -S /Users/user/something/.../Books /Users/user/something/.../Books     (2)

I would really love to get something similar to (1) working. It is so time consuming to do (2). How can I quickly create absolute paths for aliases?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

合久必婚 2024-07-25 08:14:57

我假设在您的示例中,路径 PersonalBuy 都是您的主目录中的目录。 然后您可以通过键入创建相对符号链接

cd Buy
ln -s ../Personal/Books Books

I assume in your example the paths Personal and Buy are both directories in your home directory. Then you can create a relative symlink by typing

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