printenv
瑞兹 发表于 2020-11-13 09:28浏览次数:
在类似Unix的操作系统上,printenv命令可打印全部或部分shell 环境。
On Unix-like operating systems, the printenv command prints all or part of the shell environment.
目录:
1 printenv 运行系统环境
2 printenv 语法
3 printenv 例子
printenv 运行系统环境
printenv 语法
printenv [OPTION]... [VARIABLE]...
printenv打印指定环境VARIABLE的值。如果未指定VARIABLE,则为它们全部打印名称和值对。
注意:您的外壳可能具有自己的printenv版本,该版本通常会取代此处描述的版本。请参阅您的Shell文档以获取有关其支持的选项的详细信息。
-0,--null
|
用0字节而不是换行符结尾每条输出行。
|
-- help
|
显示帮助消息,然后退出。
|
printenv [OPTION]... [VARIABLE]...
printenv prints the values of the specified environment VARIABLE(s). If no VARIABLE is specified, print name and value pairs for them all.
NOTE: your shell may have its own version of printenv, which usually supersedes the version described here. Please refer to your shell's documentation for details about the options it supports.
-0, --null
|
End each output line with 0 byte rather than newline.
|
--help
|
Display a help message, and exit.
|
printenv 例子
printenv HOME
显示当前用户的主目录的位置。
printenv
显示所有环境变量的值。
printenv HOME
Display the location of the current user's home directory.
printenv
Display the values of all environment variables.