标签:推荐 href 忽略 var 顺序 shell 函数 过程 turn 流程控制
shell本身是一个用C语言编写的程序,它是用户使用Unix/Linux的桥梁。用户的大部分工作都是通过Shell完毕的。Shell既是一种命令语言,又是一种程序设计语言。作为命令语言,它交互式地解释和运行用户输入的命令。作为程序设计语言,它定义了各种变量和參数,并提供了很多在高级语言中才具有的控制结构,包含循环和分支。
定义变量时,变量名不加美元符号($),如:
- variableName="value"
- your_name="mozhiyan"
- echo $your_name
- echo ${your_name}}
- for skill in Ada Coffe Action Java
- do
- echo "I am good at ${skill}Script"
- done
- #!/bin/bash
- myUrl="http://see.xidian.edu.cn/cpp/shell/"
- readonly myUrl
- myUrl="http://see.xidian.edu.cn/cpp/danpianji/"
/bin/sh: NAME: This variable is read only.
- unset variable_name
运算符 | 说明 | 举例 |
---|---|---|
+ | 加法 | `expr $a + $b` 结果为 30。 |
- | 减法 | `expr $a - $b` 结果为 10。 |
* | 乘法 | `expr $a \* $b` 结果为 200。 |
/ | 除法 | `expr $b / $a` 结果为 2。 |
% | 取余 | `expr $b % $a` 结果为 0。 |
= | 赋值 | a=$b 将把变量 b 的值赋给 a。 |
== | 相等。用于比較两个数字,同样则返回 true。 | [ $a == $b ] 返回 false。 |
!= | 不相等。 用于比較两个数字。不同样则返回 true。 |
[ $a != $b ] 返回 true。 |
运算符 | 说明 | 举例 |
---|---|---|
-eq | 检測两个数是否相等。相等返回 true。 | [ $a -eq $b ] 返回 true。 |
-ne | 检測两个数是否相等。不相等返回 true。 | [ $a -ne $b ] 返回 true。 |
-gt | 检測左边的数是否大于右边的,假设是,则返回 true。 | [ $a -gt $b ] 返回 false。 |
-lt | 检測左边的数是否小于右边的,假设是,则返回 true。 | [ $a -lt $b ] 返回 true。 |
-ge | 检測左边的数是否大等于右边的,假设是,则返回 true。 | [ $a -ge $b ] 返回 false。 |
-le | 检測左边的数是否小于等于右边的,假设是,则返回 true。 | [ $a -le $b ] 返回 true。 |
运算符 | 说明 | 举例 |
---|---|---|
! | 非运算,表达式为 true 则返回 false,否则返回 true。 | [ ! false ] 返回 true。 |
-o | 或运算,有一个表达式为 true 则返回 true。 | [ $a -lt 20 -o $b -gt 100 ] 返回 true。 |
-a | 与运算。两个表达式都为 true 才返回 true。 | [ $a -lt 20 -a $b -gt 100 ] 返回 false。 |
运算符 | 说明 | 举例 |
---|---|---|
= | 检測两个字符串是否相等,相等返回 true。 | [ $a = $b ] 返回 false。 |
!= | 检測两个字符串是否相等,不相等返回 true。 | [ $a != $b ] 返回 true。 |
-z | 检測字符串长度是否为0。为0返回 true。 | [ -z $a ] 返回 false。 |
-n | 检測字符串长度是否为0,不为0返回 true。 | [ -z $a ] 返回 true。 |
str | 检測字符串是否为空,不为空返回 true。 | [ $a ] 返回 true。 |
操作符 | 说明 | 举例 |
---|---|---|
-b file | 检測文件是否是块设备文件。假设是,则返回 true。 | [ -b $file ] 返回 false。 |
-c file | 检測文件是否是字符设备文件。假设是,则返回 true。 | [ -b $file ] 返回 false。 |
-d file | 检測文件是否是文件夹。假设是,则返回 true。 | [ -d $file ] 返回 false。 |
-f file | 检測文件是否是普通文件(既不是文件夹,也不是设备文件),假设是,则返回 true。 | [ -f $file ] 返回 true。 |
-g file | 检測文件是否设置了 SGID 位。假设是。则返回 true。 | [ -g $file ] 返回 false。 |
-k file | 检測文件是否设置了粘着位(Sticky Bit),假设是。则返回 true。 | [ -k $file ] 返回 false。 |
-p file | 检測文件是否是具名管道,假设是,则返回 true。 | [ -p $file ] 返回 false。 |
-u file | 检測文件是否设置了 SUID 位,假设是,则返回 true。 | [ -u $file ] 返回 false。 |
-r file | 检測文件是否可读,假设是。则返回 true。 | [ -r $file ] 返回 true。 |
-w file | 检測文件是否可写,假设是,则返回 true。 | [ -w $file ] 返回 true。 |
-x file | 检測文件是否可运行,假设是,则返回 true。 | [ -x $file ] 返回 true。 |
-s file | 检測文件是否为空(文件大小是否大于0),不为空返回 true。 | [ -s $file ] 返回 true。 |
-e file | 检測文件(包含文件夹)是否存在,假设是。则返回 true。 | [ -e $file ] 返回 true。 |
仅仅能像这样:
- #--------------------------------------------
- # 这是一个自己主动打ipa的脚本,基于webfrogs的ipa-build书写:
- # https://github.com/webfrogs/xcode_shell/blob/master/ipa-build
- # 功能:自己主动为etao ios app打包。产出物为14个渠道的ipa包
- # 特色:全自己主动打包,不须要输入不论什么參数
- #--------------------------------------------
- string="abcd"
- echo ${#string} #输出 4
- string="alibaba is a great company"
- echo ${string:1:4} #输出liba
- string="alibaba is a great company"
- echo `expr index "$string" is`#输出3(i是第3个字符)
定义数组的一般形式为:
array_name=(value1 ... valuen)
比如:
- array_name=(value0 value1 value2 value3)
还能够单独定义数组的各个分量:
- array_name[0]=value0
- array_name[1]=value1
- array_name[2]=value2
读取数组元素值的一般格式是:
${array_name[index]}
比如:
- valuen=${array_name[2]}
- ${array_name[*]}
- ${array_name[@]}
- #!/bin/sh
- NAME[0]="Zara"
- NAME[1]="Qadir"
- NAME[2]="Mahnaz"
- NAME[3]="Ayan"
- NAME[4]="Daisy"
- echo "First Method: ${NAME[*]}"
- echo "Second Method: ${NAME[@]}"
$./test.sh
First Method: Zara Qadir Mahnaz Ayan Daisy
Second Method: Zara Qadir Mahnaz Ayan Daisy
获取数组长度的方法与获取字符串长度的方法同样,比如:
- length=${#array_name[@]}
- # 或者
- length=${#array_name[*]}
- # 取得数组单个元素的长度
- lengthn=${#array_name[n]}
- $printf "Hello, Shell\n"
- Hello, Shell
- $
printf 命令的语法:
printf format-string [arguments...]
format-string 为格式控制字符串,arguments 为參数列表。
- # format-string为双引號
- $ printf "%d %s\n" 1 "abc"
- 1 abc
- # 单引號与双引號效果一样
- $ printf ‘%d %s\n‘ 1 "abc"
- 1 abc
- # 没有引號也能够输出
- $ printf %s abcdef
- abcdef
- # 格式仅仅指定了一个參数。但多出的參数仍然会依照该格式输出,format-string 被重用
- $ printf %s abc def
- abcdef
- $ printf "%s\n" abc def
- abc
- def
- $ printf "%s %s %s\n" a b c d e f g h i j
- a b c
- d e f
- g h i
- j
- # 假设没有 arguments,那么 %s 用NULL取代。%d 用 0 取代
- $ printf "%s and %d \n"
- and 0
- # 假设以 %d 的格式来显示字符串,那么会有警告,提示无效的数字,此时默认置为 0
- $ printf "The first program always prints‘%s,%d\n‘" Hello Shell
- -bash: printf: Shell: invalid number
- The first program always prints ‘Hello,0‘
- $
这样Shell程序中须要将浮点数值进行格式化的打印时,可使用小型的awk程序实现。然而,内建于bash、ksh93和zsh中的printf命令都支持浮点格式。
for 变量 in 列表
do
command1
command2
...
commandN
done
列表是一组值(数字、字符串等)组成的序列,每一个值通过空格分隔。每循环一次。就将列表中的下一个值赋给变量。
in 列表是可选的,假设不用它。for 循环使用命令行的位置參数。
比如,顺序输出当前列表中的数字:
- for loop in 1 2 3 4 5
- do
- echo "The value is: $loop"
- done
The value is: 1
The value is: 2
The value is: 3
The value is: 4
The value is: 5
- for str in ‘This is a string‘
- do
- echo $str
- done
This is a string
假设不加引號则输出:
- #!/bin/bash
- for FILE in $HOME/.bash*
- do
- echo $FILE
- done
/root/.bash_history
/root/.bash_logout
/root/.bashrc
像其它编程语言一样。Shell 也支持函数。
Shell 函数必须先定义后使用。
Shell 函数的定义格式例如以下:
function_name () {
list of commands
[ return value ]
}
假设你愿意,也能够在函数名前加上keyword function:
function function_name () {
list of commands
[ return value ]
}
函数返回值。能够显式添加return语句;假设不加。会将最后一条命令执行结果作为返回值。假设 return 其它数据,比方一个字符串。往往会得到错误提示:“numeric argument required”。
假设一定要让函数返回字符串,那么能够先定义一个变量,用来接收函数的计算结果。脚本在须要的时候訪问这个变量来获得函数返回值。
调用函数仅仅须要给出函数名。不须要加括号。
- #!/bin/bash
- funWithReturn(){
- echo "The function is to get the sum of two numbers..."
- echo -n "Input first number: "
- read aNum
- echo -n "Input another number: "
- read anotherNum
- echo "The two numbers are $aNum and $anotherNum !"
- return $(($aNum+$anotherNum))
- }
- funWithReturn
- # Capture value returnd by last command
- ret=$?
- echo "The sum of two numbers is $ret !"
The function is to get the sum of two numbers...
Input first number: 25
Input another number: 50
The two numbers are 25 and 50 !
The sum of two numbers is 75 !
函数返回值在调用该函数后通过 $? 来获得。
- #!/bin/bash
- funWithParam(){
- echo "The value of the first parameter is $1 !"
- echo "The value of the second parameter is $2 !"
- echo "The value of the tenth parameter is $10 !" # $1的值 和 0
- echo "The value of the tenth parameter is ${10} !"
- echo "The value of the eleventh parameter is ${11} !"
- echo "The amount of the parameters is $# !" # 參数个数
- echo "The string of the parameters is $* !" # 传递给函数的全部參数
- }
- funWithParam 1 2 3 4 5 6 7 8 9 34 73
#!/bin/bash funWithParam(){ echo "The value of the first parameter is $1 !" echo "The value of the second parameter is $2 !" echo "The value of the tenth parameter is $10 !" echo "The value of the tenth parameter is ${10} !" echo "The value of the eleventh parameter is ${11} !" echo "The amount of the parameters is $# !" # 參数个数 echo "The string of the parameters is $* !" # 传递给函数的全部參数 } funWithParam 1 2 3 4 5 6 7 8 9 34 73
The value of the first parameter is 1 !
The value of the second parameter is 2 !
The value of the tenth parameter is 10 !
The value of the tenth parameter is 34 !
The value of the eleventh parameter is 73 !
The amount of the parameters is 11 !
The string of the parameters is 1 2 3 4 5 6 7 8 9 34 73 !"
注意,$10 不能获取第十个參数,获取第十个參数须要${10}。当n>=10时,须要使用${n}来获取參数。
标签:推荐 href 忽略 var 顺序 shell 函数 过程 turn 流程控制
原文地址:http://www.cnblogs.com/llguanli/p/6915713.html