User Tools

Site Tools


ubuntu:environment_variables

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ubuntu:environment_variables [2019/12/15 20:37] peterubuntu: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 (:)-separated list of directories in which your system looks for executable files.| + 
-|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 Environment Variables =====
  
-^Command^Description+^System Variable^Meaning^To View Variable Value Type
-|echo $VARIABLE|To display value of a variable+|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 new variable| +|CDPATH|The search path for the cd command.|echo $CDPATH| 
-|unset|Remove variable+|HISTFILE|The name of the file in which command history is saved.|echo $HISTFILE| 
-|export Variable=value To set value of an environment variable+|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 value is 500.|echo $HISTSIZE| 
 +|USER|The username of the current user|echo $USER
 +|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 <space><tab><newline>.|echo $IFS| 
 +|LANG|Used to determine the locale category for any category not specifically selected with a variable starting with LC_.|echo $LANG
 +|PATH|The search path for commands. It is 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; export TERM=vt100| 
 +|SHELL|Path to login shell being used by the user.|echo $SHELL| 
 +|DISPLAY|Set X display name|echo $DISPLAY; export DISPLAY=:0.1| 
 +|EDITOR|Path to the program which edits the content of files|export EDITOR=/usr/bin/vim
 +|UID|User's unique ID|echo $UID|
ubuntu/environment_variables.1576442245.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki