「shell入門」制御構文if文のサンプル
1.基本形
if 条件文1
then
命令1
elif 条件文2
命令2
elif 条件文3
命令3
else
命令4
fi
2.サンプル
#!/bin/bash
i=6
a=10
if [ $a -eq 10 ]
then
echo “a = 10"
fi
if [ $a -ne $i ]
then
echo “a != $i"
fi
if [ $a -gt $i ]
then
echo “a > i"
fi
if [ $a -lt $i ]
then
echo “a < i"
else
echo “a > i"
fi
if((“$a" > “$i"))
then
echo “(())a>i"
fi
if(($a != $i))
then
echo “(())a!=i"
fi