testfaac.sh

来自「完整的RTP RTSP代码库」· Shell 代码 · 共 26 行

SH
26
字号
## shell to verify nasm version# nasm -r has format "NASM version <foo> <extra stuff>"## This shell looks for version, then sees if we're 0.98.19 or greater#found_libfaac=nofor i in `cat $1`do  word=`echo $i | tr '[a-z]' '[A-Z]'`  if test $found_libfaac = 'no'; then     if test $word = "LIBFAAC"; then        found_libfaac=yes     fi  else     if test $word = "VERSION"; then        echo "yes"        exit 0     fi     found_libfaac=no  fidoneecho noexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?