home *** CD-ROM | disk | FTP | other *** search
/ Inside Softimage 3D / InsideSoftimage3D.iso / software / 3dequalizerv2 / sys / flc / frontend_flcd < prev    next >
Encoding:
Text File  |  1998-06-06  |  475 b   |  38 lines

  1. #!/bin/sh
  2. #
  3. #
  4. #
  5. #                                    F R O N T E N D _ F L C D
  6. #
  7. #                                    (c) SCIENCE-D-VISIONS 1997
  8. #    
  9. #                                    DATE: 7.5.1997
  10. #
  11. #                                    FILE: frontend_flcd
  12. #
  13. #
  14.  
  15.  
  16. FLCD=/usr/3dequalizer/bin/flcd
  17. KILLFLCD=/usr/3dequalizer/bin/killflcd
  18. IS_ON=/etc/chkconfig
  19. USAGE="Usage: $0 {start | stop}"
  20.  
  21. case "$1" in
  22.     start)
  23.     if $IS_ON flcd && test -x $FLCD; then
  24.         $FLCD
  25.     fi
  26.     ;;
  27.     stop)
  28.     if $IS_ON flcd && test -x $KILLFLCD; then
  29.         $KILLFLCD
  30.     fi
  31.     ;;
  32.     *) 
  33.     echo "$USAGE"
  34.     exit 1
  35.     ;;
  36. esac
  37.  
  38.