Preface Different script execution methods will result in different results, especially in the bash environment. There are roughly the following ways to execute a script. First write a simple test.sh file: #!/bin/bash read -p "Please input your first name:" firstname read -p "Please input your last name:" lastname echo -e "\nYour full name is: $firstname $lastname" Execute using sh test.sh Use sh test.sh to execute the script file. This method indicates that the test.sh file is executed using the sh shell. sh has been replaced by bash. Although we declare in test.sh that #!/bin/bash is used to execute our file, if sh is used instead of bash, #!/bin/bash will no longer work. Execute test.sh using bash This method is actually the same as the principle of sh test.sh, except that we use the /bin/bash shell to execute our script file. So, in fact, you can also use dash test.sh', it just depends on which shell you want to use to execute the script, but there are some differences among sh, bash and dash. For some keywords such as let, bash supports it, while sh and dash do not support it. For some keywords, choose to use bash. Use point.Execute Before using this method, you must add execution permissions to the file: $ chmod +x test.sh After adding the execution permission, you can use ./test.sh to execute the script. This method is the same as bash test.sh. By default, bin/bash is used to execute our script. Only this execution method requires adding execution permissions to the file; other methods do not. Execute using source Using source we can also execute our script directly: source test.sh the difference When we use sh test.sh, bash test.sh, and ./test.sh to execute the script, the test.sh script will use a new shell environment to execute the commands in the script. That is to say, when using these three methods, the script is actually executed in the shell of the child process. When the child process is completed, the variables and operations in the child process will end and will not be passed back to the parent process. Can't understand? ? Take a look at the following example: [root@ubuntu] # bash test.sh Please input your first name: yao <==Enter first name Please input your last name: pentonBin <==Enter lastname Your full name is: yao pentonBin [root@ubuntu] # echo $firstname <==No output here What if you use the source method to execute the script? [root@ubuntu] # source test.sh Please input your first name: yao <==Enter first name Please input your last name: pentonBin <==Enter lastname Your full name is: yao pentonBin [root@ubuntu] # echo $firstname yao <== here output firstname That is to say, the source method executes the script in the parent process, and all operations of test.sh will take effect in the original shell. This is why you need to use source ~/.bashrc instead of bash ~/.bashrc when you do not log out of the system and want to make some settings written to ~/.bashrc take effect. The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: In-depth explanation of modes and environment variables in Vue CLI
>>: MySQL 5.7.24 installation and configuration graphic tutorial
Table of contents Preface 1. Arrange the installa...
1. Tools directory file structure [root@www tools...
Problem Description Today, when I was modifying t...
Let me first introduce to you that the node proce...
A system administrator may manage multiple server...
Border Style The border-style property specifies ...
This article shares the specific code of js+Html ...
Inject axios into Vue import axios from 'axio...
In daily development tasks, we often use MYSQL...
Detailed Analysis of Iframe Usage <iframe frame...
Today, when I was using VMware to install a new v...
Table of contents 1. Custom routing 2. Tab naviga...
This article shares 3 methods to achieve the spec...
The installation tutorial of mysql 5.7.19 winx64 ...
Quickly install the tensorflow environment in Doc...