ckermod.ini
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:6k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. ; File CKERMOD.INI, Sample C-Kermit 7.0 customization file.
  2. ;
  3. ; This file, which is ONLY A SAMPLE, should be called:
  4. ;
  5. ;   .mykermrc   (UNIX, OS-9, Aegis, BeBox, Plan 9)
  6. ;   CKERMOD.INI (VMS, OpenVMS, AOS/VS, OS/2, Amiga, Atari ST)
  7. ;   ckermod.ini (Stratus VOS)
  8. ;
  9. ; MODify it to suit your needs and preferences, and install it in the same
  10. ; directory as your C-Kermit initialization file.  The design of this file
  11. ; lets you fill in a section for each different operating system where you run
  12. ; C-Kermit.  This file is executed automatically by the standard C-Kermit
  13. ; initialization file, CKERMIT.INI (or .kermrc).  See the manual, "Using
  14. ; C-Kermit", for further information.
  15. ;
  16. ; Authors:  Christine Gianone, Frank da Cruz, Jeffrey Altman,
  17. ;           The Kermit Project, Columbia University.
  18. ; Creation: 23 November 1992 for C-Kermit 5A(188).
  19. ; Modified: 30 June 1993 for edit 189.
  20. ;           04 October 1994 for edit 190.
  21. ;           17 April 1995 for edit 191.
  22. ;            6 September 1996 for version 6.0, edit 192.
  23. ;            1 January 2000 for version 7.0, edit 196.
  24. ECHO
  25. ECHO Executing SAMPLE C-Kermit customization file v(cmdfile) for v(system)...
  26. ECHO { Please edit this file to reflect your needs and preferences.}
  27. ECHO
  28. ;
  29. ; ... and then remove the ECHO commands above.
  30. COMMENT - Settings that apply to all the systems I use:
  31. ;
  32. set delay 1                  ; I escape back quickly
  33. set dial display on          ; I like to watch C-Kermit dial
  34. ; Dialing locale and method
  35. ;
  36. ; SET DIAL COUNTRY-CODE 1    ; Uncomment and replace with yours
  37. ; SET DIAL AREA-CODE 000     ; Uncomment and replace with yours
  38. ; SET DIAL LD-PREFIX 1       ; Uncomment and replace with yours
  39. ; SET DIAL INTL-PREFIX 011   ; Uncomment and replace with yours
  40. ; SET DIAL METHOD TONE       ; Uncomment and replace with PULSE if necessary
  41. ; SET DIAL DIRECTORY ... ... ; List dialing directory files here
  42. ; File transfer preferences
  43. ;
  44. ; FAST                       ; Uncomment to enable fast file transfer
  45. ; SET FILE TYPE BINARY       ; Uncomment to force binary-mode file transfer
  46. ; SET FILE NAMES LITERAL     ; Uncomment to defeat filename conversion
  47. ; SET SEND PATHNAMES ON      ; Uncomment to defeat send pathname stripping
  48. ; SET RECEIVE PATHNAMES ON   ; Uncomment to defeat receive pathname stripping
  49. ; SET EXIT WARNING OFF       ; Uncomment this to remove connection warnings
  50. ; SET TERMINAL APC ON        ; Uncomment to allow APC commands
  51. ; SET TERM AUTODOWNLOAD ON   ; Uncomment to allow autodownload
  52. if < v(version) 600192 -
  53.   stop 1 v(cmdfile): C-Kermit 6.0.192 or later required.
  54. set take error on            ; Make errors fatal temporarily
  55. check if                     ; Do we have an IF command?
  56. set take error off           ; Yes we do, back to normal
  57. ; The ON_EXIT macro is executed automatically when C-Kermit exits.
  58. ; Define as desired.
  59. ;
  60. define ON_EXIT echo Returning you to v(system) now.
  61. ; System-independent quick dialing macro.  Depends on having the
  62. ; macros MYMODEM, MYPORT, and (optionally) MYSPEED defined in the
  63. ; system-dependent sections below.
  64. ;
  65. define MYDIAL {
  66.     if not defined MYMODEM end 1 {%0: Modem type not defined.}
  67.     set modem type m(MYMODEM)
  68.     if fail end 1 {%0: m(MYMODEM): Unsupported modem type.}
  69.     if not defined MYPORT end 1 {%0: Communication port not defined.}
  70.     set port m(MYPORT)
  71.     if fail end 1 {%0: SET PORT m(MYPORT) failed.}
  72.     if defined MYFLOW set flow m(MYFLOW)
  73.     if fail end 1 {%0: SET FLOW m(MYFLOW) failed.}
  74.     if defined MYSPEED set speed m(MYSPEED)
  75.     if fail end 1 {%0: SET SPEED m(MYSPEED) failed.}
  76.     dial %1%2%3%4%5%6%7%8%9
  77.     end v(status)
  78. }
  79. forward v(system)              ; Go execute system-dependent commands
  80. :UNIX                           ; UNIX, all versions...
  81. define MYPORT /dev/cua          ; My dialing environment
  82. define MYMODEM usr              ; Replace these by what you actually have
  83. define MYSPEED 57600
  84. ;
  85. ; If you want all your downloads to go to the same directory, no matter
  86. ; what your current directory is, uncomment and edit the following command:
  87. ;
  88. ;   set file download-directory ~/download ; Download directory for UNIX
  89. ; Put other UNIX-specific commands here...
  90. end                             ; End of UNIX section
  91. :VMS                            ; VMS and OpenVMS
  92. define MYPORT TXA0:             ; My dialing environment
  93. define MYMODEM usr              ; Replace these by what you actually have
  94. define MYSPEED 57600
  95. ; set file download-directory [$(USER).DOWNLOAD] ; Download directory for VMS
  96. ; Put other VMS-specific commands here...
  97. end                             ; End of VMS section
  98. :WIN32                          ; Windows and OS/2 customizations...
  99. :OS/2
  100. define MYPORT COM1              ; My dialing environment
  101. define MYMODEM usr              ; Replace these by what you actually have
  102. define MYSPEED 57600
  103. set command byte 8              ; Use 8 bits between Kermit and console
  104. set xfer char latin1            ; Use Latin-1 for text file transfer
  105. set term char latin1            ; And use Latin-1 during CONNECT mode
  106. ; set file download-directory C:DOWNLOADS
  107. end
  108. :OS9/68K                        ; OS-9/68000
  109. define MYPORT /t3               ; My dialing environment
  110. define MYMODEM usr              ; Replace these by what you actually have
  111. define MYSPEED 9600
  112. ; set file download-directory ~/downloads
  113. end                             ; End of OS-9 section
  114. :AOS/VS                         ; Data General AOS/VS
  115. define MYPORT @con3             ; My dialing environment
  116. define MYMODEM usr              ; Replace these by what you actually have
  117. define MYSPEED 9600
  118. ; set file download-directory v(home)DOWNLOADS
  119. end
  120. ; And so on, you get the idea...
  121. ; Fill in the sections that apply to you.
  122. :Stratus_VOS ; Stratus VOS
  123. :Amiga                          ; Commodore Amiga
  124. :Atari_ST                       ; Atari ST
  125. :Macintosh                      ; Apple Macintosh
  126. :unknown                        ; Others
  127. ; (End of CKERMOD.INI)