歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux綜合 >> 學習Linux >> linux shell 流程控制

linux shell 流程控制

日期:2017/3/6 9:48:37   编辑:學習Linux

linux shell 流程控制


linux shell 流程控制


導讀和Java、PHP等語言不一樣,linux shell有一套自己的流程控制語句,其中包括條件語句(if),循環語句(for,while),選擇語句(case)。下面我將通過例子介紹下,各個語句使用方法。

shell編程

一、shell條件語句(if用法)

if語句結構[if/then/elif/else/fi]

if 條件測試語句thenaction[elif 條件actionelseaction]fi

shell命令,可以按照分號分割,也可以按照換行符分割。如果想一行寫入多個命令,可以通過“';”分割,如:

[chengmo@centos5 ~]$ a=5;if [[ a -gt 4 ]] ;then echo 'ok';fi;

實例:(test.sh)

#!/bin/shscores=40;if [[ $scores -gt 90 ]]; thenecho "very good!";elif [[ $scores -gt 80 ]]; thenecho "good!";elif [[ $scores -gt 60 ]]; thenecho "pass!";elseecho "no pass!";fi;

shell-if

二、循環語句(for,while,until用法):

(1)for循環使用方法(for/do/done)
1.for … in 語句——語法結構

for 變量 in seq字符串       # seq字符串 只要用空格字符分割,每次for…in讀取時候,就                                                              會按順序將讀到值,給前面的變量。doactiondone

實例(testfor.sh):

#!/bin/shfor i in $(seq 10); do     #seq 10 產生 1 2 3 …… 10空格分隔字符串echo $i;done;

2.for((賦值;條件;運算語句))

for((賦值;條件;運算語句))doactiondone;

實例(testfor2.sh):

#!/bin/shfor((i=1;i<=10;i++));doecho $i;done;

shell-for(2)

(2)while循環使用(while/do/done)

while 條件語句doactiondone;

實例1:

#!/bin/shi=10;while [[ $i -gt 5 ]];doecho $i;((i--));done;

運行結果:

sh testwhile1.sh109876

實例2:(循環讀取文件內容:)

#!/bin/shwhile read line;doecho $line;done < /etc/hosts;

運行結果:

sh testwhile2.sh# Do not remove the following line, or various programs# that require network functionality will fail.127.0.0.1 centos5 localhost.localdomain localhost

(3)until循環語句——語法結構

until 條件              #直到滿足條件,就退出。否則執行action.doactiondone

實例(testuntil.sh):

#!/bin/sha=10;until [[ $a -lt 0 ]];doecho $a;((a—));done;

結果:

sh testuntil.sh109876543210
三、shell選擇語句(case、select用法)

(1)case選擇語句使用(case/esac)——語法結構

case $arg inpattern | sample) # arg in pattern or sample;;pattern1) # arg in pattern1;;*) #default;;esac

說明:pattern1 是正則表達式,可以用下面字符:
* 任意字串 ? 任意字元
[abc] a, b, 或c三字元其中之一
[a-n] 從a到n的任一字元
| 多重選擇

實例:

#!/bin/shcase $1 instart | begin)echo "start something";;stop | end)echo "stop something";;*)echo "Ignorant";;esac

運行結果:

testcase.sh startstart something

(2)select語句使用方法(產生菜單選擇)——語法

select 變量name in seq變量doactiondone

實例:

#!/bin/shselect ch in "begin" "end" "exit"docase $ch in"begin")echo "start something";;"end")echo "stop something";;"exit")echo "exit"break;;;*)echo "Ignorant";;esacdone;

運行結果:
shell-while

原文來自:http://www.cnblogs.com/chengmo/archive/2010/10/14/1851434.html

轉載地址:http://www.linuxprobe.com/shell-process-control.html


http://xxxxxx/Linuxjc/1134188.html TechArticle

Copyright © Linux教程網 All Rights Reserved