home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / tracinet.zip / inettrc.cmd next >
OS/2 REXX Batch file  |  2003-04-22  |  400b  |  18 lines

  1. /*                  */
  2. parse ARG itemp
  3. if itemp='?' | itemp ='' Then
  4. Signal Help;
  5. Do i = 1 to itemp
  6. 'inetdbg -fall'
  7. call LINEOUT  'inetrc'i'.txt' ,time('L')
  8. call LINEOUT  'inetrc'i'.txt'
  9. 'inetdbg -d >>inetrc'i'.txt'
  10. 'sleeper 60'
  11. 'inetdbg -r'
  12. end
  13. exit
  14. HELP:
  15. say 'USAGE : inettrc iteration'
  16. say 'iteration is the number of times to be traced with 60 sec inetrval'
  17. say 'e.g. inettrc 1'
  18.