变量赋值 a=123456 与编程语言不同的是,变量名与等号以及值之间不能存在空格,如: a = 123456 #报错 …
最简单的echo #!/bin/bash echo hello world #输出hello world …