readlink
rose1 发表于 2020-07-26 06:06浏览次数:
在类似Unix的操作系统上,readlink命令输出符号链接或规范文件名的值。
本文档介绍了readlink的GNU / Linux版本。
On Unix-like operating systems, the readlink command prints the value of a symbolic link, or canonical file name.
This document describes the GNU/Linux version of readlink.
目录:
1 readlink 运行系统环境
2 readlink 语法
3 readlink 例子
readlink 运行系统环境
readlink 语法
readlink [OPTION]... FILE
选件
-f, --规范化
|
通过递归地遵循给定名称的每个组成部分中的每个符号链接来规范化; 除最后一个组件外,所有组件都必须存在。
|
-e, --canonicalize-existing
|
通过递归地遵循给定名称的每个组件中的每个符号链接来规范化所有组件。
|
-m, --canonicalize-missing
|
通过递归地遵循给定名称的每个组件中的每个符号链接来规范化,而无需组件的存在。
|
-n, --no-newline
|
不要输出尾随换行符。
|
-q, --quiet
|
禁止显示大多数错误消息。
|
-s, --silent
|
禁止显示错误消息。
|
-v, --verbose
|
报告错误消息。
|
--help
|
显示帮助并退出。
|
--version
|
输出版本信息并退出。
|
readlink [OPTION]... FILE
Options
-f, --canonicalize
|
Canonicalize by following every symlink in every component of the given name recursively; all but the last component must exist.
|
-e, --canonicalize-existing
|
Canonicalize by following every symlink in every component of the given name recursively, all components must exist.
|
-m, --canonicalize-missing
|
Canonicalize by following every symlink in every component of the given name recursively, without requirements on components existence.
|
-n, --no-newline
|
Do not output the trailing newline.
|
-q, --quiet
|
Suppress most error messages.
|
-s, --silent
|
Suppress error messages.
|
-v, --verbose
|
Report error messages.
|
--help
|
Display help and exit.
|
--version
|
Output version information and exit.
|
readlink 例子
readlink symbolic-link-name
显示符号链接symbolic-link-name的完整规范路径名。
readlink symbolic-link-name
Displays the full, canonical pathname of the symbolic link symbolic-link-name.