What are environment variables?
Answers were Sorted based on User's Feedback
Answer / subbareddy
Each process in Unix has its own set of environment
variables. They're called environment variables because the
default set of such variables consists mostly of session-
wide variables used for configuration purposes.
From the point of a Unix shell though, environment
variables can be accessed the same way as any other
variable.
Common environment variables in Unix
Most well known environment variables are the following:
USER - username of a Unix user
HOME - full path to a user's home directory
TERM - terminal or terminal emulator used by a current user
PATH - list of directories searched for executable files
when you type a command in Unix shell
PWD - current directory
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashu
Environment variables are a set of dynamic values that can
affect the way running processes will behave on a computer.
EX:
PATH,HOME,%TEMP%, date etc are environmental variables,
| Is This Answer Correct ? | 1 Yes | 1 No |
What is the use of a shebang line?
What is the use of "$#" in shell scripting?
Where are cowrie shells found?
how to read systems current date and time
What does echo $0 do?
What is awk in shell script?
Write a command sequence to find all the files modified in less than 2 days and print the record count of each.
how to read systems current date and time
How do you schedule a command to run at 4:00 every morning?
how to create purchase order
Write a script to print the first 10 elements of fibonacci series.
Explain about shebang?