메뉴 건너뛰기

app

[sh] 쉘스크립트 비교 파라미터

박영식2011.06.29 00:33조회 수 2692댓글 0

    • 글자 크기
if [ "$X" -lt "0" ]
then
  echo "X is less than zero"
fi
if [ "$X" -gt "0" ]; then
  echo "X is more than zero"
fi
[ "$X" -le "0" ] &&
      echo "X is less than or equal to  zero"
[ "$X" -ge "0" ] &&
      echo "X is more than or equal to zero"
[ "$X" = "0" ] &&
      echo "X is the string or number "0""
[ "$X" = "hello" ] &&
      echo "X matches the string "hello""
[ "$X" != "hello" ] &&
      echo "X is not the string "hello""
[ -n "$X" ] &&
      echo "X is of nonzero length"
[ -f "$X" ] &&
      echo "X is the path of a real file" ||
      echo "No such file: $X"
[ -x "$X" ] &&
      echo "X is the path of an executable file"
[ "$X" -nt "/etc/passwd" ] &&
      echo "X is a file which is newer than /etc/passwd" 
박영식 (비회원)
    • 글자 크기
[모바일] 안드로이드 및 아이폰 관련 팁 (by lispro06) 조합 소스(함수로 작성)-상향식, value (by 박영식)

댓글 달기

이전 1 2 3 4 5 6 7 8 9 10... 14다음
첨부 (0)
위로