「Shell Script」比較演算子のサンプル

2021年2月25日

書式
-eq イコール
-gt より大きい
使用例

#!/bin/sh

if [ "$1" -gt "$2" ]
then 
    echo "xがyより大きい"
elif [ "$1" -eq "$2" ]
then
    echo "x とyが同じです"
else
    echo "xがyより小さい"
fi

実行結果
$ ./test04.sh 5 5
x とyが同じです
$ ./test04.sh 5 6
xがyより小さい
$ ./test04.sh 5 4
xがyより大きい

shellscript

Posted by arkgame