文件管理 · 2022年02月20日 0

readlink命令 – 找出符号链接所指向的位置

readlink是Linux系统中一个常用工具,主要用来找出符号链接所指向的位置。 **语法格式:** readlink [参数] [文件] **常用参数:** | -f | 递归跟随给出文件名的所有符号链接以标准化,除最后一个外所有组件必须存在 | | ---- | ----------------------------------------------------------------------- | | -e | 递归跟随给出文件名的所有符号链接以标准化,所有组件都必须存在 | | -n | 不输出尾随的新行 | | -s | 缩减大多数的错误消息 | | -v | 报告所有错误消息 | **参考实例** 查看软链文件真实文件: ``` [root@anycode ~]# ll /etc/system-release lrwxrwxrwx. 1 root root 14 5月 21 01:56 /etc/system-release -> centos-release [root@anycode ~]# readlink -f /etc/system-release /etc/centos-release ```