One day Linux Command (8) export environment variable

Source: Internet
Author: User

Export

Function Description: sets or displays environment variables.

Syntax: Export [-FNP] [variable name] = [variable setting value]
Note: When executing a program in shell, shell provides a set of environment variables. Export allows you to add, modify, or delete environment variables for subsequent programs. The effect of export is only true for this login operation.
Parameters:
-F indicates the function name in [variable name.
-N: Delete the specified variable. The variable is not actually deleted, but is not output to the execution environment of subsequent commands.

-P: list all environment variables that the shell assigns to the program.

Example:

Example 1: add the path/home/bin to the path environment variable.

$ Export Path = $ path:/home/bin

You can run the echo command to test whether the/home/bin directory has been added.

$ Echo $ path


In addition:You can modify the environment variables in either of the following ways. You must log out of the system again to make the changes take effect.
1. Modify the profile file:
# Vi/etc/profile
Add:
Export Path = "$ path:/opt/au1200_rm/build_tools/bin"
2. Modify the. bashrc file:
# Vi/root/. bashrc
Add:
Export Path = "$ path:/opt/au1200_rm/build_tools/bin"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.