home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / fingerd2.zip / demo.cmd next >
OS/2 REXX Batch file  |  1994-05-30  |  1KB  |  29 lines

  1. /* REXX Script */
  2. cr='0d'x
  3. Say 'Demo of Aaron''s Finger Daemon:' || cr
  4. Say cr
  5. Say 'Before you begin you must have IBM TCP/IP installed.' || cr
  6. Say 'This program has only been tested with version 2.0' || cr
  7. Say 'Press Enter to continue' || cr
  8. Pull Dummy
  9. Say 'Starting the finger daemon...' || cr
  10. 'start fingerd.exe -f finger.dat -d -b -l finger.log'
  11. Say 'Delaying 5 seconds to wait for daemon to start... '
  12. '@sleep 5000'
  13. Say 'The finger daemon has been started by now, press Enter to finger your host.' || cr
  14. Pull dummy
  15. 'finger %HOSTNAME%'
  16. Say 'Press any key when ready.' || cr || cr
  17. Pull dummy
  18. Say 'This finger request has been logged.  Press Enter to see the log file.'
  19. Pull Dummy
  20. 'type finger.log'
  21. Say cr
  22. Say cr
  23. Say 'See fingerd.txt for documentation, or just type fingerd without any' || cr
  24. Say 'parameters to see a list of options.' || cr
  25. Say 'To kill the finger daemon type ^C in the OS/2 command session running' || cr
  26. Say 'FINGERD.EXE' || cr || cr
  27. Say 'See the file fingerd.txt for information on installing this program.' || cr
  28.  
  29.