Hello World

$ cat hello.sh
#!/bin/sh
echo "Hello World"
$ chmod a+x hello.sh
$ ./hello.sh
  1. #!/bin/sh 声明脚本使用的解释器
  2. chmod a+x hello.sh 赋予脚本执行权限
  3. ./hello.sh 从当前shell进程中,派生一个进程使用bash解释器执行脚本

你可能感兴趣的:(Hello World)