欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux中Shell脚本的执行方式

程序员文章站 2024-02-19 15:05:28
...

第一个shell脚本

① 新建一个.sh文件

我们首先用vi新建一个hello.sh文件,并对他进行编辑:

[[email protected]_PC shelllearning]$ vi hello.sh

② 编辑代码

然后我们打上一段代码:

#!/bin/bash
# the first program
# author: veeja.liu

echo -e "A: Liuweijia is a good boy."
echo -e "B: I think so."

③ 脚本执行

  1. 赋予执行权限,直接运行。
    [[email protected]_PC shelllearning]$ chmod 755 hello.sh 
    [[email protected]_PC shelllearning]$ ./hello.sh 
    A: Liuweijia is a good boy.
    B: I think so.
    
  2. 通过bash调用执行脚本。
    [[email protected]_PC shelllearning]$ bash hello.sh 
    A: Liuweijia is a good boy.
    B: I think so.
    

先行知识:
Vim 文本编辑器
Vim 使用技巧
Linux-echo命令详解