사용자 도구

사이트 도구


devel:bash:arithmetic

Bash

Arithmetic

#!/bin/sh
#
# starlits
 
# -lt : less than
# -le : less than or equal
# -eq : equal
# -ge : greater than or equal
# -gt : greater than
# -ne : not equal
arithmetic() {
if [ 10 -lt 5 ] ; then
    echo "TURE : 10 < 5"
else
    echo "FALSE : 10 < 5"
fi
}
arithmetic
devel/bash/arithmetic.txt · 마지막으로 수정됨: 2007/05/11 19:46 저자 starlits