Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有内置的 unix/linux 命令返回特定符号链接的目标?
例如,如果我做了一个符号链接:
%> ln -s build_07-24-2011 latest
是否有执行此操作的命令“foo”:
%> foo latest build_07-24-2011
我知道我可以ll -l latest用 awk 解析得到同样的东西,只是想知道是否有更优雅的方法来做到这一点。
ll -l latest
看看readlink(1)。