Linux shell程式設計——if條件判斷
if 條件 then Command else Command fi 別忘了這個結尾 |
If語句忘了結尾fi test.sh: line 14: syntax error: unexpected end of fi |
if 的三種條件表示式
if command then if 函式 then | 命令執行成功,等於返回0 (比如grep ,找到匹配) 執行失敗,返回非0 (grep,沒找到匹配) |
if [ expression_r_r_r ] then | 表示式結果為真,則返回0,if把0值引向then |
if test expression_r_r_r then | 表示式結果為假,則返回非0,if把非0值引向then |
[ ] && ——快捷if
[ -f "/etc/shadow" ] && echo "This computer uses shadow passwors" |
&& 可以理解為then 如果左邊的表示式為真則執行右邊的語句 |
shell的if與c語言if的功能上的區別
shell if | c語言if |
0為真,走then | 正好相反,非0走then |
不支援整數變數直接if 必須:if [ i –ne 0 ] 但支援字串變數直接if if [ str ] 如果字串非0 | 支援變數直接if if (i ) |
=================================以command作為if 條件===================================
以多條command或者函式作為if 條件
echo –n “input:” read user if 多條指令,這些命令之間相當於“and”(與) grep $user /etc/passwd >/tmp/null who -u | grep $user then 上邊的指令都執行成功,返回值$?為0,0為真,執行then echo "$user has logged" else 指令執行失敗,$?為1,執行else echo "$user has not logged" fi |
# sh test.sh input : macg macg pts/0 May 15 15:55 . 2075 (192.168.1.100) macg has logged # sh test.sh input : ddd ddd has not logged |
以函式作為if條件 (函式就相當於command,函式的優點是其return值可以自定義)
if 以函式作為if條件, getyn then 函式reture值0為真,走then echo " your answer is yes" else 函式return值非0為假,走else echo "your anser is no" fi |
if command 等價於 command+if $?
$ vi testsh.sh #!/bin/sh if cat 111-tmp.txt | grep ting1 then echo found else echo "no found" fi | $ vi testsh.sh #!/bin/sh cat 111-tmp.txt | grep ting1 if [ $? -eq 0 ] then echo $? echo found else echo $? echo "no found" fi |
$ sh testsh.sh no found | $ sh testsh.sh 1 no found |
$ vi 111-tmp.txt that is 222file thisting1 is 111file $ sh testsh.sh thisting1 is 111file found | $ vi 111-tmp.txt that is 222file thisting1 is 111file $ sh testsh.sh thisting1 is 111file 0 found |
========================================以條件表示式作為 if條件=============================
傳統if 從句子——以條件表示式作為 if條件
if [ 條件表示式 ]
then
command
command
command
else
command
command
fi
條件表示式
- 檔案表示式
if [ -d ... ] 如果目錄存在
if [ -s file ] 如果檔案存在且非空
if [ -r file ] 如果檔案存在且可讀
if [ -w file ] 如果檔案存在且可寫
if [ -x file ] 如果檔案存在且可執行
- 整數變量表達式
if [ int1 -ne int2 ] 如果不等於
if [ int1 -ge int2 ] 如果>=
if [ int1 -gt int2 ] 如果>
if [ int1 -le int2 ] 如果<=
if [ int1 -lt int2 ] 如果<
- 字串變量表達式
字串允許使用賦值號做等號
if [ $string1 != $string2 ] 如果string1不等於string2
if [ -n $string ] 如果string 非空(非0),返回0(true)
if [ -z $string ] 如果string 為空
if [ $sting ] 如果string 非空,返回0 (和-n類似)
條件表示式引用變數要帶$
if [ a = b ] ;then echo equal else echo no equal fi |
[[email protected] ~]$ sh test.sh input a: 5 input b: 5 no equal (等於表示式沒比較$a和$b,而是比較和a和b,自然a!=b) |
if [ $a = $b ] ;then echo equal else echo no equal fi |
[[email protected] ~]$ sh test.sh input a: 5 input b: 5 equal |
-eq -ne -lt -nt只能用於整數,不適用於字串,字串等於用賦值號=
[[email protected] ~]$ vi test.sh echo -n "input your choice:" read var if [ $var -eq "yes" ] then echo $var fi [[email protected] ~]$ sh -x test.sh input your choice: y test.sh: line 3: test: y: integer expression_r_r_r expected |
相關推薦
Linux shell程式設計——if條件判斷
if 語句格式if 條件then Commandelse Commandfi 別忘了這個結尾If語句忘了結尾fitest.sh: line 14: syntax error: unexpected end of fi
linux中 shell 中 if 條件判斷中 -a 到 -z 的意思
[ -a FILE ] 如果 FILE 存在則為真。 [ -b FILE ] 如果 FILE 存在且是一個塊特殊檔案則為真。 [ -c FILE ] 如果 FILE 存在且是一個字特殊檔案則為真。 [ -d FILE ] 如果 FILE 存在且是一個目錄則為真。 [ -e FILE ] 如果 FIL
Linux shell程式設計中的判斷條件
-b file 若檔案存在且是一個塊特殊檔案,則為真 -c file 若檔案存在且是一個字元特殊檔案,則為真 -d file 若檔案存在且是一個目錄,則為真 -e file 若檔案存在,
linux基礎之shell程式設計(2)-條件判斷,算數運算,測試
bash中如果實現條件判斷? 條件測試型別 整數測試 字元測試 檔案測試 條件測試的表示式 有三種 [ expression ] --方括號與表示式之間一定要有一個空格 [[ expression ]] test exp
Linux Shell編程 條件判斷語法
個數 rom local 存在 nbsp 之間 警告 執行權限 不同 if條件判斷語句 單分支 if 條件語句 語法格式: if [條件判斷式];then 程序 fi 或者 if [條件判斷式] then 程序 fi 在使用單分支 if
Shell指令碼IF條件判斷和判斷條件總結
1、基本語法: if [ command ]; then 符合該條件執行的語句 fi 2、擴充套件語法: if [ command ];then 符合該條件執行的語句 elif [ command ];then 符合該條件執行的語句 else 符合該條件執行的語句 fi 3
【轉】Shell指令碼IF條件判斷和判斷條件總結
1、基本語法: if [ command ]; then 符合該條件執行的語句 fi 2、擴充套件語法: if [ command ];then 符合該條件執行的語句 elif [ command ];then 符合該條件執行的語句 else 符合該條件執行的
shell程式設計(條件判斷與流程控制)學習筆記
流程控制語句 一、條件判斷式 二、單分支if語句 三、雙分支if語句 四、多分支if語句 五、case語句 六、for迴圈 七、while迴圈和until迴圈 一 條件判斷式 1 按照檔案型別進行判斷 2 按照檔案許可權進行判斷 3 兩個檔案之間進行比較
Linux --- Shell的if判斷條件問題 (-lt和>的使用情況)
Shell的判斷條件有兩種寫法:1.-lt(小於),-gt(大於),-le(小於等於),-ge(大於等於),-eq(等於),-ne(不等於) l--less g--great t--than e--equal n--not if [ $s -lt 0 ] || [ $s -g
Linux Shell程式設計 條件判斷語法
if條件判斷語句 單分支 if 條件語句 語法格式: if [條件判斷式];then 程式 fi 或者 if [條件判斷式] then 程式 fi 在使用單分支 if 條件查詢時需要注意幾點: if 語句使用 fi 結尾,和一般語言使用大括號結尾不同。 [
Linux --- Shell的if判斷條件問題 (-lt和>的使用情況)
Shell的判斷條件有兩種寫法:1.-lt(小於),-gt(大於),-le(小於等於),-ge(大於等於),-eq(等於),-ne(不等於) l--less g--great t--than e--equal n--not if [ $s -lt 0 ] || [
Linux Shell程式設計之 for迴圈語句 if條件語句
最近涉及Linux Shell程式設計,還不太熟悉,對於賦值語句,數值計算,迴圈語句,變數使用都不太熟悉。我不打算一個一個的說明知識點,我打算用最多3個例子說明所有的這些知識點。 Example 1 : <span style="font-size:14px;
linux shell 之if-------用if做判斷
exist word then ucc reserve 服務器 單機 mon true 一 簡介 1 字符串判斷 str1 = str2 當兩個串有相同內容、長度時為真 str1 != str2 當串str1和str2不等時為真 -n s
shell 編程if條件判斷與if 真假判斷
if 真假 與 條件判斷if條件判斷與if真假判斷 目錄: 1.正確寫法 2.錯誤寫法 3.總結一、正確寫法 在編寫shell腳本時,為簡化代碼的行號及結構的簡約型,通常將命令執行結果和判斷通過一條語句進行編寫(在C語言編寫程序時,經常遇到此種寫法),如:[[email protected]
if 條件判斷 和 判斷總結---shell腳本
選項 但是 語言 echo ng2 other 朋友 系統 solar 本文主要介紹了Shell腳本IF條件判斷和判斷條件總結,本文先是給出了IF條件判斷的語法,然後給出了常用的判斷條件總結,需要的朋友可以參考下。 前言: 無論什麽編程語言都離不開條件判斷。S
Linux Shell 程式設計 迴圈控制 條件控制 輸入引數等
1. 傳入指令碼引數 $# 是傳給指令碼的引數個數 $0 是指令碼本身的名字 $1是傳遞給該shell指令碼的第一個引數 $2是傳遞給該shell指令碼的第二個引數 [email protected] 是傳給指令碼的所有引數的列表 2. 建立一個新檔案
Linux學習8之Shell編程--條件判斷
並且 cin mil tro shell編程 spa 判斷 ont shel 一、按照文件類型進行判斷 測試選項 作 用 -b 文件 判斷該文件是否存在,並且是否為塊設備文件(是塊設備文件為真) -c 文件 判斷該文件是否
linux shell 程式設計之if(收藏學習)
if 語句格式if 條件 then Command else Commandfi 別忘了這個結尾 If語句忘了結尾fi test.sh: line 14: syntax error: unexpected end
shell 編程 -- 條件判斷
如果 -s size 裏的 字符串 ron -o 普通 修改 1.按照文件類型進行判斷(常用的)-b 判斷該文件是否存在-d 判斷是否存在,並且是否為目錄(是目錄就為真)-e 判斷該文件是否存在(存在為真)-f 判斷文件是否存在,並且是否為普通文件(是普通文件為真)-L 判
3-2 If條件判斷 安裝apache 2
linux shell centos7 if條件判斷 apache安裝 如果連網關都ping不通,那肯定是本機的問題.一個簡單的if語句舉例: 常用if舉例:判斷apache安裝是否成功可以使用下面腳本3-2 If條件判斷 安裝apache 2