Linux查询root环境变量,linux环境变量和查看方法

linux环境变量和查看方法

1. 显示环境变量HOME

[root@localhost ~]# echo $HOME

/root

2. 设置一个新的环境变量hello

[root@localhost ~]# export HELLO="hello world"

[root@localhost ~]# echo $HELLO

hello world

附:修改已存在的环境变量

[root@localhost ~]# HELLO='ni shi yi ge haoren'

[root@localhost ~]# echo $HELLO

ni shi yi ge hao ren

3. 使用env命令显示所有的环境变量

[root@localhost ~]# env

HOSTNAME=localhost.localdomain1

TERM=xterm

SHELL=/bin/bash

HISTSIZE=1000

SSH_CLIENT=192.168.15.225 56133 22

SSH_TTY=/dev/pts/0

USER=root

………………

4. 使用set命令显示所有本地定义的Shell变量

[root@localhost ~]# set

BASH=/bin/bash

BASHOPTS=checkwinsize:cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments

你可能感兴趣的:(Linux查询root环境变量)