home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / finger4.zip / demo.cmd next >
OS/2 REXX Batch file  |  1994-05-29  |  762b  |  24 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'
  11. Say 'Delaying 5 seconds to wait for daemon to start... '
  12. '@sleep 5000'
  13.  
  14. Say 'The finger daemon has been started by now, press Enter to finger your host.'
  15. Pull dummy
  16. 'finger %HOSTNAME%'
  17. Say 'Press any key when ready.' || cr
  18. Pull dummy
  19. Say 'Now you can install fingerd and edit your own finger.dat file.' || cr
  20. Say 'Press enter to view the documentation on fingerd.' || cr
  21. Pull Dummy
  22. 'more < fingerd.txt'
  23.  
  24.