home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 024 / psi110g.zip / MAKECFG.BAT < prev    next >
DOS Batch File  |  1994-09-05  |  362b  |  16 lines

  1. @echo off
  2. echo TCP Servers: >! config.inf
  3. grep -i "#define servers" config.h
  4. if errorlevel 0 goto next
  5. echos  "  None!" >> config.inf
  6. :next
  7. grep -i "#define smtpserver" config.h
  8. if errorlevel 1 goto next 
  9. echos "  SMTP " >> config.inf
  10. :next
  11. grep -i "#define fingerserver" config.h
  12. if errorlevel 1 goto next 
  13. echos "  FINGER " >> config.inf
  14. :next
  15.  
  16.