home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 February / VPR9602A.ISO / drvlib / comm / ecci / x86 / cliprm.bat < prev    next >
DOS Batch File  |  1995-10-27  |  2KB  |  47 lines

  1. @echo off
  2. REM #***********************************************************************#
  3. REM #                                                                       #
  4. REM # ECCI  Copyright **** ECCI ****  -1992, 1993-.  This copyrighted  ECCI #
  5. REM # ECCI  material  is  the confidential,  unpublished  property of  ECCI #
  6. REM # ECCI  **** ECCI **** .  This copyright  notice  and  any  other  ECCI #
  7. REM # ECCI  copyright  notices  included  in  machine readable copies  ECCI #
  8. REM # ECCI  must be reproduced on all authorized copies.               ECCI #
  9. REM #                                                                       #
  10. REM #***********************************************************************#
  11. REM 
  12. REM #
  13. REM # $Id: cliprm.bat,v 1.1 1995/03/10 07:48:30 dennyr Exp $
  14. REM #
  15. REM # Log Information:
  16. REM # $Log: cliprm.bat,v $
  17. REM # Revision 1.1  1995/03/10  07:48:30  dennyr
  18. REM # Initial revision
  19. REM #
  20. REM #
  21. REM #
  22. REM #
  23. REM #########################################################################
  24. REM #       file:   cliprm                                                  #
  25. REM #       args:   none                                                    #
  26. REM #########################################################################
  27. REM 
  28. REM #       Remove CLIP structures from CLIP driver.
  29. REM 
  30. REM (DLUS=
  31. REM for d in `ls /dev/scom/clip | grep -v config`
  32. REM do
  33. REM         DLUS="$DLUS /dev/scom/clip/$d"
  34. REM done
  35. REM if [ "$DLUS" != "" ]
  36. REM then
  37. REM         /usr/etc/scom/bin/cliprm $DLUS
  38. REM         exit $?
  39. REM else
  40. REM         exit 0
  41. REM fi) > /dev/null 2>&1
  42.  
  43.  
  44. pushd %QuadPath%\dev\scom\clip
  45. for %%d in (*) do if NOT "%%d"=="config" %QuadPath%\etc\scom\bin\cliprm /dev/scom/clip/%%d
  46. popd
  47.