echo :类似于Python里面print的作用
每个shell脚本首行是#!/bin/Bash
注:#!/bin/bash是指此脚本使用/bin/bash来解释执行。
其中,#!是一个特殊的表示符,其后,跟着解释此脚本的shell路径。
bash只是shell的一种,还有很多其它shell,如:sh,csh,ksh,tcsh,…
参考:https://blog.csdn.net/ankang654321/article/details/88698880
注:执行文件其他地方如果有#开头,就表示注释