A brief discussion on the differences between several ways of executing .sh files in Ubuntu

A brief discussion on the differences between several ways of executing .sh files in Ubuntu

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:
  • Solve the problem of passing parameters with spaces when Shell executes Python files
  • Use Linux shell script to implement FTP scheduled execution of batch download of specified files
  • Using shell scripts to automatically execute script files in Linux
  • What to do if Linux prompts No such file or directory when executing .sh file (three solutions)
  • Perfect solution for implementing "multi-threaded" script execution in Shell
  • Solution to the prompt "No such file or directory" when executing in shell script

<<:  In-depth explanation of modes and environment variables in Vue CLI

>>:  MySQL 5.7.24 installation and configuration graphic tutorial

Recommend

MySQL graphical management tool Navicat installation steps

Table of contents Preface 1. Arrange the installa...

Linux uses shell scripts to regularly delete historical log files

1. Tools directory file structure [root@www tools...

Detailed explanation of 7 SSH command usages in Linux that you don’t know

A system administrator may manage multiple server...

This article teaches you how to play with CSS border

Border Style The border-style property specifies ...

js+Html to realize table editable operation

This article shares the specific code of js+Html ...

How to simply encapsulate axios in vue

Inject axios into Vue import axios from 'axio...

mysql group by grouping multiple fields

In daily development tasks, we often use MYSQL...

HTML iframe usage summary collection

Detailed Analysis of Iframe Usage <iframe frame...

In-depth understanding of React Native custom routing management

Table of contents 1. Custom routing 2. Tab naviga...

3 simple ways to achieve carousel effects with JS

This article shares 3 methods to achieve the spec...

How to quickly install tensorflow environment in Docker

Quickly install the tensorflow environment in Doc...