testnasm.sh
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #
  2. # shell to verify nasm version
  3. # nasm -r has format "NASM version <foo> <extra stuff>"
  4. #
  5. # This shell looks for version, then sees if we're 0.98.19 or greater
  6. #
  7. VER=`echo $1 | tr '[a-z]' '[A-Z]'`
  8. until test $VER = "VERSION"; 
  9.   do
  10.    shift
  11.    VER=`echo $1 | tr '[a-z]' '[A-Z]'`
  12.   done
  13. # check for version tag
  14. if test $VER != "VERSION"; then
  15.   echo "no"
  16.   exit 0
  17. fi
  18. shift
  19. if test $1 -gt 0; then 
  20.    echo "yes"
  21.    exit 0
  22. fi
  23. shift
  24. if test $1 -gt 98; then
  25.    echo "yes"
  26.    exit 0
  27. fi
  28. shift
  29. if test -z $1; then
  30.    echo "no"
  31.    exit 0
  32. fi
  33. if test $1 -ge 19; then 
  34.   echo "yes"
  35.   exit 0
  36. fi
  37. echo "no"
  38. exit 0