Use of the source command in linux

Source: Internet
Author: User

Use of the source command in linux

Linux source command:

Common usage: source filepath or. filepath

Function: enables the current shell to read the shell file whose path is filepath and execute all the statements in the file in sequence. It is usually used to re-execute the modified initialization file to make it take effect immediately, you do not have to log out and log on again. For example, if you modify the/etc/profile file and want it to take effect immediately, you can use the source command, such as source/etc/profile, instead of logging on again.

The source command (from the C Shell) is the built-in command of the bash shell; the dot command (.) is a dot symbol (from the Bourne Shell) is another name of the source. This can also be seen from the usage.

Differences between source filepath and sh filepath and./filepath:

When shell scripts have executable permissions, there is no difference between using sh filepath and./filepath .. /Filepath is because the current directory is not in the PATH, and all "." is used to represent the current directory.

Sh filepath re-creates a sub-shell and executes the statements in the script in the sub-shell. The sub-shell inherits the environment variables of the parent shell, but the sub-shell is newly created, the changed variable will not be brought back to the parent shell unless export is used.

Source filename simply reads the statements in the script and runs them in the current shell. No new sub-shell is created. All statements for creating and changing variables in the script are saved in the current shell.

Example:

Create A test. sh script with the following content: A = 1;

Modify the executable permission: chmod + x test. sh;

After running sh test. sh, echo $ A is displayed as null, because A = 1 is not returned to the current shell;

After you run./test. sh, the same effect is displayed;

Run source test. sh or. test. sh, And Then echo $ A. 1 is displayed, indicating that the variable A = 1 is in the current shell;

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.