메뉴 건너뛰기

app

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

박영식2011.06.29 00:33조회 수 2699댓글 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" 
박영식 (비회원)
    • 글자 크기
[flash] screen.loadMovie로 이미지 로딩시 속성 설정 (by 박영식) [XE] 게시판 팁 (by lispro06)

댓글 달기

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