Linux環境變數的詳情檢視

2021-10-01 20:26:34 字數 2563 閱讀 7835

環境變數一般指export 匯出的變數

[root@bogon ~]

# export

declare -x histcontrol="ignoredups"

declare -x history_file="/usr/local/domob/record/root/.bash_history"

declare -x histsize="1000"

declare -x histtimeformat="%f %t root"

declare -x home="/root"

declare -x hostname="bogon"

……

檢視所有變數(包括全域性變數和區域性變數)

[root@bogon ~]

# set

bash=/bin/bash

bash_aliases=(

)bash_argc=(

)bash_ar**=(

)bash_cmds=(

)bash_lineno=(

)bash_source=(

)bash_versinfo=(

[0]="4"

[1]="2"

[2]="46"

[3]="2"

[4]="release"

[5]="x86_64-redhat-linux-gnu"

)bash_version='4.2.46(2)-release'

……

檢視全域性變數

命令:printenv或env

[root@bogon ~]

# env

xdg_session_id=15

hostname=bogon

selinux_role_requested=

term=xterm

shell=/bin/bash

histsize=1000

ssh_client=192.168.152.1 65195 22

selinux_use_current_range=

……

檢視所有變數、函式、整數、已經匯出的變數

[root@bogon ~]

# declare

bash=/bin/bash

bash_aliases=(

)bash_argc=(

)bash_ar**=(

)bash_cmds=(

)bash_lineno=(

)bash_source=(

)bash_versinfo=(

[0]="4"

[1]="2"

[2]="46"

[3]="2"

[4]="release"

[5]="x86_64-redhat-linux-gnu"

)bash_version='4.2.46(2)-release'

columns=79

……

檢視bash shell 所有引數的配置資訊

[root@bogon ~]

# set -o

allexport off

braceexpand on

emacs on

errexit off

errtrace off

functrace off

hashall on

histexpand on

history on

ignoreeof off

interactive-comments on

keyword off

monitor on

noclobber off

noexec off

noglob off

nolog off

notify off

nounset off

onecmd off

physical off

pipefail off

posix off

privileged off

verbose off

vi off

xtrace off

注意

顯示某個環境變 量的值,使用echo命令,如果要引用某個環境變數,則在環境變數前加乙個美元符號$echo $home全域性環境變數對於當前shell的子shell同樣適用

在Linux下檢視環境變數

系統的環境變數在配置web server以及編寫程式都常常被用到,因此了解必要的關於系統變數的知識是非常有必要的.在windows下,檢視環境變數的命令是 set,這個命令會輸出系統當前的環境變數。linux下準確的說是redhat下應該如何檢視呢,命令是 export 如果你想檢視某乙個名稱的環境...

在Linux下檢視環境變數

如果你想檢視某乙個名稱的環境變數,命令是 echo 環境變數名,比如 echo oracle home 這是最基礎的,下面來講下稍微深入一點的,並舉例說明 1.顯示環境變數home echo home home ljj 2.設定乙個新的變數 export hello hello echo hello...

lInux 檢視和新增環境變數

1.echo path virtualbox home openwrt widora echo path home bin home cheng local bin usr local sbin usr local bin usr sbin usr bin sbin bin usr games us...