Kodition in Bash
# short if codition
[ $(( 2 + 2 )) -eq '4' ] && echo "yes"
# long if codition
if [ $(( 2 + 2 )) -eq '4' ]
then
echo "yess"
fi
Restu Wahyu Saputra
# short if codition
[ $(( 2 + 2 )) -eq '4' ] && echo "yes"
# long if codition
if [ $(( 2 + 2 )) -eq '4' ]
then
echo "yess"
fi