提问人:olebole 提问时间:7/12/2023 更新时间:7/12/2023 访问量:25
在 shell 中读取符号链接目标的可移植方式 [duplicate]
Portable way to read symlink destination in shell [duplicate]
问:
有没有办法可移植地(至少是 Linux 和 macOS)获取 (Posix) shell 脚本中符号链接的目标? 在一个旧程序中,我发现
ls -lad "bin" 2> /dev/null | awk '{ printf ("%s\n", $11) }'
但是,当用户名或组名包含空格时,这将失败。
答: 暂无答案
评论
readlink
realpath