阅读(2904) (18)

Bash 注释

2020-06-16 15:15:09 更新

注释对于任何编程语言都是不可忽视的重要组成部分,编写者通过注释来为其他人提供解释或提示,能有效提高代码的可读性。 Bash 同其他编程语言一样提供了两种类型注释的支持。

  • 单行注释
  • 多行注释

Bash 单行注释

在注释段落的开头使用#,如下:

#!/bin/bash


#This is the basic bash script


echo "Hello World!"

将上面的代码执行后,在执行命令的过程中会自动忽略注释部分,不会被解释输出

$ ./bath_script.sh
Hello World!

Bash 多行注释

插入多行注释有两种方法:

  1. << BLOCKBLOCK之间的内容会被当成注释。

#!/bin/bash


<< BLOCK
This is the basic bash script
This is the basic bash script
BLOCK


echo "Hello World!"
  1. :''之间的内容会被当成注释

#!/bin/bash


: '
This is the basic bash script
This is the basic bash script
'


echo "Hello World!"