shell脚本的基础知识

## 1.什么是shell ##
脚本中命令的解释器


## 2.shell脚本的意义 ##
1.记录命令执行的过程和执行逻辑,以便以后重复执行
2.脚本可以批量处理主机
3.脚本可以定时处理主机


3.如何创建shell脚本
#!/bin/bash
##幻数

打开脚本后 自动出现

 4.如何执行shell脚本


1).手动在环境中开启指定解释器
sh script.sh


2).直接在当前环境中运行shell中的指令不开启新的shell
source script.sh
. script.sh


3).开启脚本中指定的shell并使用此shell环境运行脚本中的指令
chmod +x script.sh
/xxx/xxx/script.sh
./script.sh

 

 5.如何对脚本进行调试
sh -x /mnt/westos.sh

相关文章

Centos系统之Shell编程基础知识
从Export理解Shell环境和变量生存期
linux shell数组变量、类型及规则
Centos编程Shell基本工作原理方案
Centos操作系统编程之Shell 问答录
rsync-linux备份脚本