【学神】shell脚本的基本使用方法

本节所讲内容:

1、   shell 基本语法

2、   变量

3、   表达式

4、   判断语句

5、   if表达式

一、什么叫shell

【例】先看一个简单的shell程序

[[email protected] test]# vim example01.sh  #写入以下内容
#!/bin/bash
#This is to show what a example looks like.
echo "Our first example"
echo # This inserts an empty line in output.
echo "We are currently in the following directory."
pwd
echo
echo "This directory contains the following files"
ls
 
[[email protected] test]# chmod +x example01.sh 
[[email protected] test]# ./example01.sh 
Our first example
We are currently in the following directory.
/root/test
This directory contains the following files
example01.sh

shell就是系统跟计算机硬件交互时使用的中间介质,它只是系统的一个工具。实际上,在shell和计算机硬件之间还有一层东西那就是系统内核了。打个比方,如果把计算机硬件比作一个人的躯体,而系统内核则是人的大脑,至于shell,把它比作人的五官似乎更加贴切些。回到计算机上来,用户直接面对的不是计算机硬件而是shell,用户把指令告诉shell,然后shell再传输给系统内核,接着内核再去支配计算机硬件去执行各种操作。

1.1  shell编程

编程语言:

1.机器语言

2.汇编语言

3.高级语言

(1)静态语言Dynamically Typed Language:编译型语言  c  c++  java

(2)动态语言Statically Typed Language:解释型语言  php  shell  python   perl

编译器:(解释器)  将人类理解的语言翻译成机器理解的语言

弱类型:变量随时用随时声明

强类型:变量在使用前,必须事先声明

其中shell是弱类型的编程语言

#!/bin/bash   #!跟shell命令的完全路径。作用:显示后期命令以哪种shell来执行这些命令。如不指shell,以当前shell作为执行的shell。

[[email protected] test]# ll /bin/sh       #查看/bin/sh的软连接
 lrwxrwxrwx. 1 root root 4 Dec 18  2012 /bin/sh -> bash

以shell中以#开始头表示,整个行就被当作一个注释。执行时被忽略。

shell程序一般以.sh结尾,当然主要是看是否为执行,然后看里面有没有#!

1.2 总结

§创建shell程序的步骤:

§ 第一步:创建一个包含命令和控制结构的shell文件。

§ 第二步:修改这个文件的权限使它可以执行。使用chmod u+x

§ 第三步:执行

方法1:./example01.sh
方法2: 使用绝对路径  [[email protected] test]# /root/test/example01.sh
方法3:[[email protected] test]# bash example01.sh
方法4:[[email protected] test]#source/sh example01.sh  #注:example01.sh可以不用x权限

二、shell变量及运用

1 shell变量

变量是shell 传递数据的一种方法。变量是用来代表每个值的符号名。

例: x=3

Shell 有两类变量:临时变量和永久变量。

1.1临时变量:是shell 程序内部定义的,其使用范围仅限于定义它的程序,对其它程序不可见。

1.2永久变量是环境变量,其值不随shell 脚本的执行结束而消失。

【例】$PATH

[[email protected] test]# echo $PATH
/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/root/bin
#用作运行某个命令的时候,本地查找不到某个命令或文件,会到这个声明的目录中去查找。

1.3用户定义变量:由字母或下划线打头,不允许数字开头,后面由字母、数字或下划线组成,并且大小写字母意义不同。变量名长度没有限制。

使用变量值时,要在变量名前加上前缀“$”。

例如:1VAR 是非法变量。

2 主要赋值类型

2.1 变量赋值 赋值号“=”两边应没有空格。

【例】 用“=”对变量赋值

[[email protected] test]# A=aaa
[[email protected] test]# A = aaa
bash: A: command not found

2.2将一个命令的执行结果赋给变量

[[email protected] test]# A=`date`
[[email protected] test]# echo $A
Sat Feb 7 20:54:26 CST 2015

【例】  用“=”对命令赋值

[[email protected] test]# B=$(ls -l)
[[email protected] test]# echo $B
[[email protected] test]# A=$B
[[email protected] test]# echo $A

2.3可以利用变量和其它字符组成一个新的字符串

[[email protected] test]# MYDIR=/home/mk
[[email protected] test]# echo $MYDIR/zhangsan
/home/mk/zhangsan
[[email protected] test]# DAY=mon
[[email protected] test]# echo Today is $DAYday
Today is
[[email protected] test]# echo Today is $DAY day
Today is mon day
[[email protected] test]# echo Today is ${DAY}day
Today is monday

2.4 给变量赋值多个单词

[[email protected] test]# NAME="mike Ron"
[[email protected] test]# echo $NAME
mike Ron
[[email protected] test]# NAME=‘shen mk‘
[[email protected] test]# echo $NAME
shen mk

【例】  赋值时“”和’’的区别

[[email protected] test]# NAME="mike Ron $NAME"
[[email protected] test]# echo $NAME
mike Ron shen mk
[[email protected] test]# NAME=‘mike Ron $NAME‘ 
[[email protected] test]# echo $NAME
mike Ron $NAME

总结:单引号:之间的内容原封不动地指定给了变量。

双引号:特殊符号的含义保留。

【例】  变量与符号的综合演示

[[email protected] shell]# a=192.168.1.63
[[email protected] shell]# b=‘192.168.1.63‘
[[email protected] shell]# c="192.168.1.63"
[[email protected] shell]# echo "a=$a"
 a=192.168.1.63
[[email protected] shell]# echo ‘b=$b‘
b=$b
[[email protected] shell]# echo "c=${c}"   #c=${c}等同c=$c
c=192.168.1.63

2.5 把命令当作变量进行定义

[[email protected] shell]# wen=`date +%F`   #利用反引号进行定义
[[email protected] shell]# echo $wen
2015-02-15 
[[email protected] shell]# wen=$(date)      #利用小括号加$进行定义
[[email protected] shell]# echo $wen
Sun Feb 15 12:42:30 CST 2015

3 对变量的管理

3.1列出所有的变量

set 命令,例:

[[email protected] test]# set | grep DAY
DAY=mon

3.2删除变量

[[email protected] test]# echo $NAME
mike Ron $NAME
[[email protected] test]# unset NAME
[[email protected] test]# echo $NAME

4位置变量和特殊变量

4.1 位置变量

Shell解释执行用户的命令时,将命令行的第一个字作为命令名,而其它字作为参数。由出现在命令行上的位置确定的参数称为位置参数。

使用$N 来表示

$0  获取当前执行shell脚本的文件文件名,包括脚本路径

$n  获取当前脚本的第n个参数 n=0,1,2.....n 当n大于9时 用{n}表示。

【例】快速生成$1-$9

方法一

[[email protected] shell]# seq 9|sed ‘s#[0-9]#$&#g‘>nsh #seq 9生成1-9之间的数,&为前面需要替换的字符
$1
$2
$3
$4
$5
$6
$7
$8
$9

方法二

[[email protected] shell]# seq -s " $" 1 9|sed ‘s#1#$1#‘>n.sh  #-s为指定分隔符后面的替换为seq -s " $" 1 9生成的第一个数为没$符的所以应替换
$1 $2 $3 $4 $5 $6 $7 $8 $9 
 [[email protected] shell]# sed -i ‘[email protected][email protected] &@ ‘ n.sh  
执行:[[email protected] shell]# sh n.sh `seq -s "" 9`   #可快速赋值 
1 2 3 4 5 6 7 8 9

4.2 特殊变量

有些变量是一开始执行Script脚本时就会设定,且不能被修改,但我们不叫它只读的系统变量,而叫它特殊变量。这些变量当一执行程序时就有了,以下是一些等殊变量:

$*    这个程序的所有参数

$#    这个程序的参数个数

$$   这个程序的PID

$!  执行上一个后台程序的PID

$?  执行上一个指令的返回值

【例】 [

[email protected] shell]# cat n.sh 
echo $1 $2 $3 $4 $5 $6 $7 $8 $9
echo $* : $# : [email protected] 
执行结果:[[email protected] shell]# sh n.sh `seq 9`
1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 : 9 : 1 2 3 4 5 6 7 8 9

【例】分别取出路径和文件名

分析:利用$0得到当前执行的路径 分别进行输出

脚本:[[email protected] shell]# cat 0.sh 
echo $0
dirname $0
basename $0
执行结果:[[email protected] shell]# sh /shell/0.sh 
/shell/0.sh                        #执行的全路径
/shell                                                          #执行的目录  
0.sh                                                                     #执行的文件名

【例】位置变量在服务启动与停止中的应用

[[email protected] shell]# vim /etc/init.d/vsftpd 
case "$1" in                   #相当于执行/etc/init.d/vsftpd  $1
  start)
        start                 #当选择start时 调用start函数来启动服务
        ;;  
  stop)
        stop                 #当选择stop时 调用stop函数来停止服务
        ;;   
  restart|reload)              #当选择restart或者reload时 先停止服务 在启动服务
        stop               
        start             
        RETVAL=$?
        ;;  
 
echo $"Usage: $0 {start|stop|restart|try-restart|force-reload|status}"   #当输入的$1不存在时利用$0 来打印当前的执行脚本的方法

补充:关于$?返回值的主要含义


$0


运行成功


$2


权限被拒绝


$1--$125


运行失败,命令错误或者参数错误


$126


找到命令,但是不能执行


$127


未找到改命令


$128


命令被系统强制结束

5小综合实例

5.1变量在shell中的使用

[[email protected]hpc test]# cat z1.sh 
#!/bin/bash    #写入如下
var1="abcd efg"
echo $var1
var2=1234
echo "The value of var2 is $var2"
echo $HOME
echo $PATH
echo $PWD
执行结果:
[[email protected] test]# ./z1.sh 
abcd efg
The value of var2 is 1234
/root
/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin:/root/bin
/root/test

5.2 特殊变量的测试

[[email protected] test]# cat z.sh 
#!/bin/bash    #写入如下
echo "$*                表示这个程序的所有参数 "
echo "$#                表示这个程序的参数个数"
touch /tmp/a.txt
echo "$$                表程序的进程ID "
touch /tmp/b.txt &
echo "$!                 执行上一个后台指令的PID"
echo "$$                表程序的进程ID "
执行结果:
[[email protected] test]# ./z.sh aaa bbb ccc
aaa bbb ccc             表示这个程序的所有参数 
3                       表示这个程序的参数个数
3899                   表程序的进程ID 
3901                   执行上一个后台指令的PID
3899                   表程序的进程ID

6 变量的数值计算常用的命令:(())

6.1 (())用于执行简单的整数运算

格式:$((算数运算符))

6.2 常用的算数运算符


运算符


意义


++ ——


递增及递减,可前置也可以后置


+ — ! ~


一元运算的正负号 逻辑与取反


+ — * /  %


加减乘除与余数


<<=  >>=


比较大小符号


==  !=


相等 不相等


>><<


向左位移 向右位移


& ^ |


位的与 位的异或 位的或


&& ||


逻辑与 逻辑或


?:


条件判断

【例】三种简单的赋值运算

[[email protected] shell]# ((a=1+2**3-4%3))   #2**3为2的3次方
[[email protected] shell]# echo $a         
8
[[email protected] shell]# b=$((1+2**3-4%3))  
[[email protected] shell]# echo $b
8
[[email protected] shell]# echo $((1+2**3-4%3))  #省去了定义一个变量
8

【例】递增 递减的应用

[[email protected] shell]# echo $((a+=1))
9
[[email protected] shell]# echo $((a++))      #等同于a+=1
10
[[email protected] shell]# echo $((a--))   
11
[[email protected] shell]# echo $a             #a++或a--为先赋值 再a加1或a减1
10
[[email protected] shell]# echo $((--a))
9
[[email protected] shell]# echo $a        #--a或++a为先a加1或a减1 再进行a的赋值
9

【例】 比较大小

[[email protected] shell]# echo $((1>2))   
0
[[email protected] shell]# echo $((1<=2))   #真为1 假为0 
1

【例】1到100所有整数和

[[email protected] shell]# echo $((100*(1+100)/2))
5050

【例】 写一个简单四则运算的脚本

[[email protected] shell]# cat operation.sh
a=6
b=2
echo "a-b=$(($a-$b))"
echo "a+b=$(($a+$b))"
echo "a*b=$(($a*$b))"
echo "a/b=$(($a/$b))"
echo "a**b=$(($a**$b))"
echo "a%b=$(($a%$b))"
执行结果:[[email protected] shell]# sh operation.sh 
a-b=4
a+b=8
a*b=12
a/b=3
a**b=36
a%b=0

升级后的脚本

[[email protected] shell]# cat operation.sh 
a=$1
b=$2
echo "a-b=$(($a-$b))"
echo "a+b=$(($a+$b))"
echo "a*b=$(($a*$b))"
echo "a/b=$(($a/$b))"
echo "a**b=$(($a**$b))"
echo "a%b=$(($a%$b))"

或者

[[email protected] shell]# cat operation.sh 
read -p "enter a:" a
read -p "enter b:" b
echo "a-b=$(($a-$b))"
echo "a+b=$(($a+$b))"
echo "a*b=$(($a*$b))"
echo "a/b=$(($a/$b))"
echo "a**b=$(($a**$b))"
echo "a%b=$(($a%$b))"

【例】写一个简单的计算器,并且有判断功能

[[email protected] shell]# cat operation.sh 
function Enternum(){
  read -p "Please enter the first number:" a
  read -p "Please enter the second number:" b
        Judgenum
}
function Enterchar(){
  read -p "Please enter the transport operator:" c
  echo "****************"
  Judgechar
}
function Judgenum(){
  if [[ $a =~ ^[0-9]+$ && $b =~ ^[0-9]+$ ]]; then    #注意=~两边的空格 
        Enterchar 
        else
        echo "Digital input errors, please reenter num"
        Enternum
        fi
}
function Judgechar(){
        if [[ $c =~ "-"|"+"|"*"|"/"|"%" ]];then
        echo $(($a$c$b))
        else
        echo "Digital input errors, please reenter char"
         Enterchar 
        fi
}
while true
do Enternum
Done

三、Read命令

1 定义

Read作用从键盘读入数据,赋给变量

【例】 对read的实验  #以空格为赋值分隔符

 [[email protected] test]# read a b c
1 32 3    
[[email protected] test]# echo $a $b $c
1 32 3
[[email protected] test]# echo $a
1

【例】在shell中使用read命令:

[[email protected] test]# cat read.sh 
#!/bin/bash    #写入如下
echo "input first second third :"
read  first second third
echo "the first parameter is $first"
echo "the second parameter is  $second"
echo "the third parameter is $third"

测试:

[[email protected] test]# ./read.sh 
input first second third :
aa 11 33
the first parameter is aa
the second parameter is  11
the third parameter is 33

2参数用法

2.1  read answer    从标准输入读取一行并赋值给变量answer

2.2  read first last          从标准输入读取一行,直至遇到第一个空白符或换行符。把用户键入的第一个词存到变量first中,把该行的剩余部分保存到变量last中

2.3  read –a arrayname             读入一组词,依次赋值给数组arrayname③

2.4  read –e          在交互式shell命令行中启用编辑器。

2.5  read –p prompt        打印提示符,等待输入,并将输入赋值给REPLY变量③

2.6  read –r line              允许输入包含反斜杠③

四、expr 命令

作用:Shell变量的算术运算:

1 expr命令:对整数型变量进行算术运算

语法: expr  表达式    #注意 运算符之间要有空格

[[email protected] test]# expr 3 + 5
8
[[email protected] test]# var1=8
[[email protected] test]# var2=2
[[email protected] test]# exp
expand       exportfs     expresskeys  
export       expr         
[[email protected] test]# expr $var1 - 5
3
[[email protected] test]# expr $var1 / $var2
4
[[email protected] test]# expr $var1 * $var2
expr: syntax error
[[email protected] test]# expr $var1 \* $var2
16

2 expr 程序的例子

[[email protected] test]# cat expr.sh  
#! /bin/sh  
 a=10
 b=20
 c=30
 value1=`expr $a + $b + $c`
 echo "The value of value1 is $value1"
 value2=`expr $c / $b`
 echo "The value of value2 is $value2"
 value3=`expr $c \* $b`    #整除
 echo "The value of value3 is $value3"
 value4=`expr $a + $c / $b`
 echo "The value of value4 is $value4"

测试:

[[email protected] test]# ./expr.sh 
The value of value1 is 60
The value of value2 is 1
The value of value3 is 600
The value of value4 is 11

3 复杂的运算

[[email protected] test]# var4=8
[[email protected] test]# expr `expr 5 + 11` / $var4
2

【例】

[[email protected] test]# var1=8
[[email protected] test]# var2=2
[[email protected] test]# var4=`expr $var1 / $var2`
[[email protected] test]# echo $var4
4

【例】 expr查找格式的应用

[[email protected] shell]# expr "test.pub" : ".*.pub"&& echo 1 || echo 0  
8                       # 8 为test.pub
1                       #左边为真则打印1
[[email protected] shell]# expr "test.pu1b" : ".*.pub"&& echo 1 || echo 0
0
0                       #左边为假则打印0

【例】用expr判断是否为整数

[[email protected] shell]# cat judge_int.sh 
read -p "input int: " a
expr $a + 0 &>/dev/null                      #将所有执行信息重定向到null中
[ $? -eq 0 ] && echo "int" || echo "input erro"#根据expr执行的返回值来判断是否为整数

学神-IT-教育51cto技术交流群:468845589  快来上我们公开课吧!

学神MK老师:1273815479

学神ZY老师:3054384936

学神-IT-教育学神-IT-1508班-公瑾同学整理提供

时间: 2024-10-10 07:29:43

【学神】shell脚本的基本使用方法的相关文章

Linux中执行shell脚本的4种方法

这篇文章主要介绍了Linux中执行shell脚本的4种方法总结,即在Linux中运行shell脚本的4种方法,需要的朋友可以参考下. bash shell 脚本的方法有多种,现在作个小结.假设我们编写好的shell脚本的文件名为hello.sh,文件位置在/root/bin目录中并已有执行权限(添加权限的方法:chmod +x hello.sh). 方法一:切换到shell脚本所在的目录(此时,称为工作目录)执行shell脚本: ./ 的意思是说在当前的工作目录下执行hello.sh.如果不加上

linux c程序中获取shell脚本输出的实现方法

linux c程序中获取shell脚本输出的实现方法 1. 前言Unix界有一句名言:“一行shell脚本胜过万行C程序”,虽然这句话有些夸张,但不可否认的是,借助脚本确实能够极大的简化一些编程工作.比如实现一个ping程序来测试网络的连通性,实现ping函数需要写上200~300行代码,为什么不能直接调用系统的ping命令呢?通常在程序中通过 system函数来调用shell命令.但是,system函数仅返回命令是否执行成功,而我们可能需要获得shell命令在控制台上输出的结果.例如,执行外部

shell,shell脚本结构和执行方法,data命令,shell脚本中的变量

shell是什么shell是一种脚本语言 aming_linux blog.lishiming.net可以使用逻辑判断.循环等语法可以自定义函数shell是系统命令的集合shell脚本可以实现自动化运维,能大大增加我们的运维效率 shell脚本结构和执行方法开头需要加#!/bin/bash以#开头的行作为解释说明脚本的名字以.sh结尾,用于区分这是一个shell脚本执行方法有两种chmod +x 1.sh; ./1.shbash 1.sh查看脚本执行过程 bash -x 1.sh查看脚本是否语法

Linux中执行shell脚本的4种方法总结

bash shell 脚本的方法有多种,现在作个小结.假设我们编写好的shell脚本的文件名为hello.sh,文件位置在/data/shell目录中并已有执行权限. 方法一:切换到shell脚本所在的目录(此时,称为工作目录)执行shell脚本: 复制代码 代码如下: cd /data/shell ./hello.sh ./的意思是说在当前的工作目录下执行hello.sh.如果不加上./,bash可能会响应找到不到hello.sh的错误信息.因为目前的工作目录(/data/shell)可能不在

ftp在shell脚本中的使用方法

1. ftp自动登录批量下载文件. #####从ftp服务器上的/home/data 到 本地的/home/databackup#####!/bin/bashftp -n<<!open 192.168.1.171user guest 123456binarycd /home/datalcd /home/databackuppromptmget *closebye!2. ftp自动登录上传文件. ####本地的/home/databackup to ftp服务器上的/home/data#####

shell脚本结构和执行方法

#!/bin/bash #开头需要加,如果没有也可以执行.告诉解释器为/bin/bash以#开头的行作为解释说明,但是如果第二行还加此行,#!/bin/bash就只是一个解释说明,可以写一些解释.脚本的名字以.sh结尾,用于区分这是一个shell脚本执行方法有两种chmod +x 1.sh #增加执行权限./1.sh #执行方法bash或者sh 1.sh #执行方法 bash -x 1.sh #查看脚本执行过程bash -n 1.sh #查看脚本是否语法错误,如果没有任何输出,就没问题.这两行必

shell脚本结构以及执行方法

[[email protected] ~]# mkdir shell [[email protected] ~]# cd shell/ [[email protected] shell]# vim first.sh #!/bin/bash                              必须必 ##the first test shell script.           描述 ##written by guozhen. mkdir 123                      

设置shell脚本静默方式输入密码方法

stty命令是一个终端处理工具.我们可以通过它来实现静默方式输入密码,脚本如下 #!/bin/sh echo –e “enter password:” stty –echo                                                  #禁止将输出发送到终端 read password                                          #交互式读取 stty echo                               

centos下,单引号括起来的shell脚本不执行解决方法

例子一: touch test.sh vi test.sh input test='echo "test*"|grep [a-zA-Z0-9] |wc -c' echo $test 保存,退出vi: sh test.sh 结果:echo "test*"|grep [a-zA-Z0-9] |wc -c 说明没有执行: 我们把一对单引号 修改成$();结果类容如下: test=$(echo "test*"|grep [a-zA-Z0-9] |wc -