T2.sh
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # T.sh
  4. #
  5. # FIX  Short description.
  6. #
  7. . eval_tools.sh
  8. HEADER a short description of your test
  9. #------------------------------------ -o- 
  10. # Test.
  11. #
  12. # Start the agent if needed (make sure it stop it below)
  13. STARTAGENT
  14. CAPTURE "<executable_with_arguments:_stores_stdout/stderr_for_use_later>"
  15. CHECKEXACT "<string_to_look_for_an_exact_match_of_in_the_CAPTUREd_file_output>"
  16. [ $? -eq 1 ]
  17. FAILED $? "<diagnostic_label>"
  18. #------------------------------------ -o- 
  19. # Cleanup, exit.
  20. #
  21. # Stop the agent if necessary
  22. STOPAGENT
  23. FINISHED