shell脚本编程

2020-06-01  本文已影响0人  zhaoxin94

一、构建基本脚本

创建shell脚本文件

  1. 在创建shell脚本文件时,必须在文件的第一行指定要使用的shell。其格式为:
#!/bin/bash
  1. 要让shell找到脚本,只需采取以下两种做法之一:
    • 将shell脚本文件所处的目录添加到PATH环境变量中
    • 在提示符中用绝对或相对文件路径来引用shell脚本文件
  2. 为名为test.sh的shell脚本添加执行权限:
chmod u+x test.sh
  1. 运行shell脚本:
# 方法1 
sh test.sh  

# 方法2 
./test.sh

变量

  1. 环境变量
  1. 用户变量
  1. 命令替换
    shell脚本最有用的特性之一就是可以从命令输出中提取信息,并将其付给变量。
    有两种方法可以将命令输出赋给变量:
testing = `date`
testing=$(date)

执行数学运算

# $[],推荐 
echo $[(2+3)*4]  

# 使用 expr 
TEMP=`expr 2 + 3` 
echo `expr $TEMP \* 4`

二、结构化命令

条件语句

  1. 基本语法
if [ 条件判断式 ]
then
      commands
fi
if [ 条件判断式 ]
then
      commands
else
      commands
fi
if [ 条件判断式1 ]
then
      commands
elif [ 条件判断式2 ]
then
      commands
fi    
  1. 条件判断
    [ condition ] 注意condition前后要有空格。非空返回0,0为 true,否则为 false 。

例子:

if [ 'test01' = 'test' ] 
then
     echo '等于' 
fi  

# 20是否大于10 
if [ 20 -gt 10] 
then
     echo '大于' 
fi  

# 是否存在文件/root/shell/a.txt 
if [ -e /root/shell/a.txt ] 
then
     echo '存在' 
fi  

if [ 'test02' = 'test02' ] && echo 'hello' || echo 'world' 
then
     echo '条件满足,执行后面的语句' 
fi

运行结果:

大于 
hello 
条件满足,执行后面的语句
  1. case命令
case variable in
pattern1 | pattern2) commands1;;
pattern3) commands2;;
*) default commands;;
esac

循环语句

  1. for命令
# 语法1 (list就是多个值用空格分隔开)
for var in list
do
    commands
done

# 语法2 (C语言风格)
for ((variable assignment; condition; iteration process))
do
    commands
done
  1. while命令
while [ condition ]
do
    commands
done
上一篇下一篇

猜你喜欢

热点阅读