返回静态链接目标的 shell 命令
是否有内置的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 readlink(1)。
Take a look at readlink(1).