getcam
上传用户:qdrechuli
上传日期:2022-08-01
资源大小:917k
文件大小:1k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # description: Net-Cam IP Video Surveillance Server
  4. #
  5. # File : netcam
  6. #
  7. # Author : Jean Pierre Cordeiro (jean-pierre.cordeiro@lefil.com)
  8. #
  9. # Changelog :
  10. #
  11. # 2002-10-09 Jean Pierre Cordeiro (jean-pierre.cordeiro@lefil.com)
  12. #  - Creation
  13. #
  14. # Description: Starts and stops the Net-Cam Server
  15. #
  16. # Source function library
  17. if [ -f /etc/rc.d/init.d/functions ]; then
  18. . /etc/rc.d/init.d/functions
  19. elif [ -f /etc/init.d/functions ]; then
  20. . /etc/init.d/functions
  21. fi
  22. GetCamBin=/opt/NetAdmin/Net-Cam/bin/GetCam.pl
  23. # Check that getcam exists.
  24. test -f $GetCamBin || exit 0
  25. # See how we were called.
  26. case "$1" in
  27. start)
  28. echo "Starting Net-Cam Server: getcam"
  29. daemon $GetCamBin
  30. ;;
  31. stop)
  32. echo "Stopping Net-Cam Server: getcam"
  33. killproc $GetCamBin
  34. ;;
  35. status)
  36. status $GetCamBin
  37. ;;
  38. restart)
  39. $0 stop
  40. $0 start
  41. ;;
  42. *)
  43. echo "Usage: getcam {start|stop|restart|status}"
  44. exit 1
  45. ;;
  46. esac
  47. # End of this script