GetOptTest.sh
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #!/bin/bash
  2. #
  3. MACHINE=$(uname -m)
  4. if [ -x ./bin.debug.${MACHINE} ]
  5. then
  6. echo -e " ./bin.debug.${MACHINE}/GetOptTest This is a -a -b -c foo -d bar -0 -1 -2 -x -xa --add 1 --append --close --delete me --verbose --file foo.txt --close=foo.bar test"
  7.     ./bin.debug.${MACHINE}/GetOptTest 
  8. This is a  
  9. -a 
  10. -b 
  11. -c foo 
  12. -d bar 
  13. -0 
  14. -1 
  15. -2 
  16. -x 
  17.         -xa 
  18. --add 1 
  19.         --append 
  20. --close 
  21. --delete me 
  22. --verbose 
  23. --file foo.txt 
  24. --close=foo.bar test
  25. fi