ubuntu:environment_variables
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:environment_variables [2019/12/15 20:37] – peter | ubuntu:environment_variables [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 8: | Line 8: | ||
- | ===== Common Environment Variables ===== | + | ---- |
- | ^Variable^Description^ | + | ===== Commands for managing Environment Variables ===== |
- | |PATH|This variable contains a colon (: | + | |
- | |USER|The username| | + | Environment variables are case-sensitive and usually they are created in upper case. |
- | |HOME|Default path to the user's home directory| | + | |
- | |EDITOR|Path to the program which edits the content of files| | + | ^Command^Description^ |
- | |UID|User's unique ID| | + | |echo $VARIABLE|To display value of a variable.| |
- | |TERM|Default terminal emulator| | + | |printenv|Displays all or part of environment variables,| |
- | |SHELL|Shell being used by the user| | + | |env|Displays all exported environment variables.| |
+ | |VARIABLE_NAME= variable_value|Create a new variable.| | ||
+ | |set|Display the name and value of each shell variable.| | ||
+ | |unset|Remove a variable.| | ||
+ | |export Variable=value|To set value of an environment variable.| | ||
---- | ---- | ||
- | ===== Commands for Environment Variables ===== | + | ===== Common |
- | ^Command^Description^ | + | ^System Variable^Meaning^To View Variable Value Type^ |
- | |echo $VARIABLE|To display | + | |BASH_VERSION|Holds the version of this instance of bash.|echo $BASH_VERSION| |
- | |env|Displays all environment variables| | + | |HOSTNAME|The name of the your computer.|echo $HOSTNAME| |
- | |VARIABLE_NAME= variable_value|Create | + | |CDPATH|The search path for the cd command.|echo $CDPATH| |
- | |unset|Remove | + | |HISTFILE|The name of the file in which command history is saved.|echo $HISTFILE| |
- | |export | + | |HISTFILESIZE|The maximum number of lines contained in the history file.|echo $HISTFILESIZE| |
- | + | |HISTSIZE|The number of commands to remember in the command history. The default | |
+ | |USER|The username | ||
+ | |HOME|The home directory of the current user.|echo $HOME| | ||
+ | |IFS|The Internal Field Separator that is used for word splitting after expansion and to split lines into words with the read builtin command. The default value is < | ||
+ | |LANG|Used to determine the locale category for any category not specifically selected with a variable | ||
+ | |PATH|The search path for commands. It is a colon-separated list of directories in which the shell looks for commands.|echo $PATH| | ||
+ | |PS1|Your prompt settings.|echo $PS1| | ||
+ | |TMOUT|The default timeout for the read builtin command. Also in an interactive shell, the value is interpreted as the number of seconds to wait for input after issuing the command. If not input provided it will logout user.|echo $TMOUT| | ||
+ | |TERM|Your login terminal type.|echo $TERM; | ||
+ | |SHELL|Path to login shell being used by the user.|echo $SHELL| | ||
+ | |DISPLAY|Set X display name|echo $DISPLAY; export DISPLAY=: | ||
+ | |EDITOR|Path to the program which edits the content | ||
+ | |UID|User' |
ubuntu/environment_variables.1576442245.txt.gz · Last modified: 2020/07/15 09:30 (external edit)