2020-12-31 Linux Shell指令碼if else 與或的用法

海月汐辰發表於2020-12-31

                 Linux Shell指令碼if else 與或的用法

 

一、關於判斷,linux shell指令碼中不是用else if而是用elif的寫法

二、測試例項

#!/bin/bash

if [[ $1 = 'android' ]]; 
then
  echo "Input is android"
elif [[ $1 = 'twitter' ]] || [[ $1 = 'youtube' ]];
then
  echo "Input is $1"
elif [[ $1 = 'trump' ]] && [[ $2 = 'stone' ]];
then
  echo "Input is $1 and $2"  
else
  echo "on any argument!"
fi

三、執行測試結果。

xxx@ubuntu:/opt$ ./test.sh 
on any argument!
xxx@ubuntu:/opt$ ./test.sh android
Input is android
xxx@ubuntu:/opt$ ./test.sh youtube
Input is youtube
xxx@ubuntu:/opt$ ./test.sh twitter
Input is twitter
xxx@ubuntu:/opt$ ./test.sh stone
on any argument!
xxx@ubuntu:/opt$ ./test.sh trump stone
Input is trump and stone

 

相關文章