home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / kermit / pcbdker.arc / DEFAULT.SCR < prev    next >
Text File  |  1989-03-11  |  2KB  |  53 lines

  1. ; Utility Macros
  2. ;
  3. ; ZDL/ZUL is for ZMODEM download/upload
  4. ; YDL/YUL is for YMODEM (XMODEM 1k) download/upload
  5. ; XDL/XUL is for XMODEM download/upload
  6. ;
  7. ; All of the dsz macros are invoked by dropping back to command mode
  8. ; and typing the macro name.  ZUL uses the convention where ul.lst
  9. ; contains the list of files to be uploaded.  Both YMODEM and XMODEM
  10. ; require a filename.  All files go to the default directory.
  11. ; Following transfer, the user is returned to terminal mode (connect)
  12. ;
  13. define ZDL     run \kermit\dsz pB8192 pv1 rz, connect
  14. define ZUL     run \kermit\dsz pB8192 pv1 sz @C:\kermit\ul.lst, connect
  15. define YDL     run \kermit\dsz pB8192 pv1 rc, connect
  16. define YUL     run \kermit\dsz pB8192 pv1 sx -k \%1, connect
  17. define XDL     run \kermit\dsz pB8192 pv1 rx, connect
  18. define XUL     run \kermit\dsz pB8192 pv1 sx \%1, connect
  19. define TK      take \kermit\\%1.INI
  20. define D       run dir \%1
  21. define DI      run dir \kermit\.ini
  22. define err1stop echo No Answer...Try Again Later, hangup, stop
  23. define err2stop echo Exceeded Redial Count...Try Again Later, hangup, stop
  24. ;
  25. ; Command File Macros
  26. ;
  27. define PCB     take \kermit\pcboard.ini
  28. ;
  29. ; Key Settings
  30. ;
  31. set key \2339 \Khangup          ; Set alt-H to hangup
  32. set key \2348 \Khelp            ; Set alt-Z to help (^] still works)
  33. set key \2349 \Kexit            ; Set alt-X to exit to command mode
  34. set key \2417 \27\91\50J
  35. ;
  36. ; Default Settings
  37. ;
  38. set baud 2400
  39. set bell on
  40. set default-disk C:\ARC\DL      ; Downloaded files to this directory
  41. set flow-control none
  42. set handshake code 0
  43. set local-echo off
  44. set parity none
  45. set display 8-bit
  46. set incomplete keep
  47. set warning on
  48. set send packet-length 1000
  49. set receive packet-length 1000
  50. set terminal VT102              ; Same as ANSI-BBS
  51. set terminal wrap on            ; Wrap lines if too long
  52. set terminal roll on            ;
  53.