返回静态链接目标的 shell 命令

发布于 2024-11-26 10:16:43 字数 287 浏览 1 评论 0原文

是否有内置的 unix/linux 命令可以返回特定符号链接的目标?

例如,如果我创建了一个符号链接:

%> ln -s build_07-24-2011 latest

是否有一个命令“foo”可以执行此操作:

%> foo latest
build_07-24-2011

我知道我可以使用 awk 解析 ll -l latest 来获得相同的结果,只是想知道是否有一种更优雅的方式来做到这一点。

Is there a built-in unix/linux command which returns the target of a specific symbolic link?

for example if i made a symbolic link:

%> ln -s build_07-24-2011 latest

is there a command "foo" that does this:

%> foo latest
build_07-24-2011

i know that i can parse the ll -l latest with awk to get the same thing, just wondering if there's a more elegant way to do this.

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

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

发布评论

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

评论(1

君勿笑 2024-12-03 10:16:43

看一下 readlink(1)

Take a look at readlink(1).

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