Detailed explanation of bash command usage

Detailed explanation of bash command usage

On Linux, bash is adopted as the standard, which basically describes the processing and execution of text with a ".sh" extension like the vi editor.

As with programming, it has many features like variables, functions, and arithmetic processing, so if you are making a small program, you can write it in bash.

Also, since bash is executed by the shell, it is also called a shell script.

Create a shell script

We start by creating a simple script that prints "Hello World!!" to the console.

Use the vi command to create a new file.

$ vi hello.sh

Once the editor opens, write as shown below.

#!/usr/bin/bash
echo "Hello World!!"
exit 0

The "#!/usr/bin/bash" on the first line indicates that it is a shell script using bash.

The second line describes the statement to be executed.

Finally, exit bash using "exit 0". Parameter 0 indicates normal termination.

After creating the file, execute the shell script using the bash command.

$ bash hello.sh

Execution Result:

Hello World!!

Hello World!! is output

In addition, when executing shell scripts, in addition to bash, there are also commands that change execution permissions and run with "./".

$ chmod 755 hello.sh
$ ./hello.sh

There is a way to execute it using sh command.

$ sh hello.sh

Shell scripts can be used for commenting as well as programming.

Comments can be written after "#".

#!/usr/bin/bash
echo "Hello World!!"
#End processing.
exit 0

Shell scripts can define variables and assign values.

#!/usr/bin/bash
 
num=100
PI=3.14
STR1="Hello"
str_2="World!!"
 
echo ${num}
echo ${PI}
echo ${STR1}
echo ${str_2}
 
exit 0

Variables can be alphanumeric characters, such as uppercase and lowercase letters, numbers, and underscores (_).

When assigning a value to a variable, write it as "variable = value".

Note that if you put spaces before and after the "=", it will cause an error.

In addition, when accessing a variable, you need to add "$" before the variable name, such as "${variable}", and enclose the variable in "{}".

Input and Output

#!/usr/bin/bash
 
read AGE
echo "ege=$AGE"
 
exit 0

Execution Result:

30
ege=30

read stores the content input from the console into the variable specified in the parameter.

The variables specified by read can be called ordinary variables.

You may also be interested in:
  • Bash script enables you to view Linux system information every time you log in to the shell
  • How to execute Linux Bash commands in Python3
  • Detailed explanation of how to pass password to ssh/scp command in bash script
  • Summary of Creating and Using Array Methods in Bash Scripts
  • A Deep Understanding of Angle Brackets in Bash (For Beginners)
  • Implementation of Java code executing shell commands
  • Java simple implementation of calling command line and getting execution result example
  • Example of calling shell command in java and getting the execution result
  • Implementing bash command process parsing through Java

<<:  MySQL 5.7.15 installation and configuration method graphic tutorial (windows)

>>:  JS implementation of Apple calculator

Recommend

How to deploy kafka in docker

Table of contents 1. Build Docker 2. Enter the co...

The difference between HTML iframe and frameset_PowerNode Java Academy

Introduction 1.<iframe> tag: iframe is an i...

Common functions of MySQL basics

Table of contents 1. Common function classificati...

Detailed explanation of how to migrate a MySQL database to another machine

1. First find the Data file on the migration serv...

Detailed steps for porting busybox to build a minimal root file system

Busybox: A Swiss Army knife filled with small com...

Monitor the size change of a DOM element through iframe

A common problem encountered during the developme...

12 Laws of Web Design for Clean Code [Graphic]

Beautiful code is the foundation of a beautiful we...

Summary of solutions to common Linux problems

1. Connect Centos7 under VMware and set a fixed I...

Summary of flex layout compatibility issues

1. W3C versions of flex 2009 version Flag: displa...

Quickly solve the problem of slow and stuck opening of input[type=file]

Why is it that when the input tag type is file an...

How to fix the footer at the bottom of the page (multiple methods)

As a front-end Web engineer, you must have encoun...

HTML head tag detailed introduction

There are many tags and elements in the HTML head ...

Learn the black technology of union all usage in MySQL 5.7 in 5 minutes

Performance of union all in MySQL 5.6 Part 1:MySQ...