Linux system Add, modify, delete path environment variables

Source: Internet
Author: User

I. Adding environment variables

(Use Export,c shell with setenv in Bash shell)

1. Modify directly at the terminal:

Export path= $PATH: Software_installation_path/bin

Modification is only valid for this process

2. Modify the User level

In home/user/.profile, add:

Export path= $PATH: Software_installation_path/bin

Save the file, reboot (some system execution./.profile, no reboot required; some systems must be restarted)

3. Modify the system level

Cd/etc/profile

VI Profile

Export path= $PATH: Software_installation_path/bin

Save the file, reboot (some system execution./profile, no reboot required; some systems must be restarted)

After restarting, you can see the PATH environment variable to see if it changes:

Echo $PATH

Two. Renaming of environment variables

Echo ${path/old_name/new_name} #变更一个目录名old_name

Echo ${path//old_name/new_name} #变更所有目录名old_name

Three environment variable Deletion

echo ${path#/deletion_name:}

Linux system Add, modify, delete path environment variables

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.