Home > Operation and Maintenance > Linux Operation and Maintenance > How to check environment variables under Linux?

How to check environment variables under Linux?

藏色散人
Release: 2019-04-03 15:37:13
Original
39930 people have browsed it

This article mainly introduces the command method to view environment variables under Linux. I hope it will be helpful to friends in need!

How to check environment variables under Linux?

Viewing environment variables

1. Use the echo command to view a single environment variable. For example:

echo $PATH
Copy after login

2. Use env to view all environment variables. For example:

env
Copy after login

3. Use set to view all locally defined environment variables.

Commonly used environment variables:

PATH determines which directories the shell will search for commands or programs

HOME Current user’s home directory

HISTSIZE Number of historical records

LOGNAME Current user’s login name

HOSTNAME Refers to the name of the host

SHELL Current user Shell type

LANGUGE Language-related environment variables, multi-language can be modified This environment variable

MAIL The current user’s mail storage directory

PS1 Basic prompt, for the root user is#, for ordinary users it is $

Related recommendations: "Linux Tutorial"

The above is the detailed content of How to check environment variables under Linux?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template