home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckv301txt.zip / ckermit90.txt < prev    next >
Text File  |  2011-08-08  |  107KB  |  2,152 lines

  1.  
  2.    [1]The Columbia Crown The Kermit Project | Columbia University
  3.    612 West 115th Street, New York NY 10025 USA o [2]kermit@columbia.edu
  4.    ...since 1981
  5.    [3]Home [4]Kermit 95 [5]C-Kermit [6]Scripts [7]Current [8]New [9]FAQ
  6.    [10]Support
  7.  
  8.  
  9.       [11]CLICK HERE to read about some of these items.
  10.  
  11.           [12]Table of platforms   [13]Book: Using C-Kermit   [14]Download
  12.                                                               C-Kermit 9.0
  13.  
  14. C-Kermit 9.0 Update Notes
  15.  
  16.    Note: C-Kermit 9.0.301 contains a correction that applies only to
  17.    Solaris 10 and 11.
  18.      * [15]Large Files
  19.      * [16]How to Test Large-File Transfer
  20.      * [17]Arithmetic with Large Integers
  21.      * [18]FORCE-3 Packet Protocol
  22.      * [19]Variable Evaluation
  23.  
  24.      * [20]The RENAME Command You Always Wanted
  25.      * [21]Other New Features
  26.      * [22]Incompatibilities
  27.      * [23]What's Not In C-Kermit 9.0
  28.      * [24]And a Loose End
  29.  
  30.      * [25]Demonstration: Secure POP mail fetcher
  31.      * [26]Demonstration: HP Switch Configuration Backup
  32.      * [27]Demonstration: HP iLO Blade Configuration
  33.      * [28]Demonstration: IBM/Rolm/Siemens CBX Management
  34.      * [29]Demonstration: CSV and TSV Files
  35.      * [30]Demonstration Scripts for Webmasters
  36.  
  37.    This is the third supplement to [31]Using C-Kermit, Second Edition. I
  38.    apologize for the scattered nature of the information and I hope I can
  39.    organize it and gather it all into one place for easy and definitive
  40.    reference some day. It's a big job so it depends on the demand. For the
  41.    time being the definitive reference and introduction is the book (which
  42.    is now available also in a [32]Kindle Edition), plus the [33]C-Kermit
  43.    7.0 update, [34]C-Kermit 8.0 update, and now this one. Plus tons of
  44.    other web pages on this site, sample script programs, and so on.
  45.  
  46.    In version 6.0, C-Kermit was a pretty powerful and flexible
  47.    communication program with scripting capabilities. By version 9.0, I'd
  48.    like to think of it more as a scripting language with built-in
  49.    communications. You can get an idea of the kinds of programs you can
  50.    write in Kermit language [35]here. You can develop programs quickly
  51.    because it's an interactive program, not a compiler. The scripting
  52.    language is the command language. Kind of like the Unix shell but
  53.    "somewhat" less cryptic, including concepts not only from C but from
  54.    PL/I, Snobol, LISP, Bliss, and Smalltalk. The language itself is built
  55.    upon the command language of the much-loved [36]DECSYSTEM-20 from the
  56.    1970s and 80s, the Clipper Ship of the Text Era. (Text is not a bad
  57.    word. Those of us who can touch-type and who are proficient in
  58.    text-based computing environments like Unix shell or VMS DCL are likely
  59.    to be orders of magnitude more productive than users of GUIs.)
  60.  
  61.    Thanks to (at least) Jeff Altman, William Bader, Ian Beckwith, Nelson
  62.    Beebe, Gerry Belanger, Joop Boonen, Rob Brown, Christian Corti, John
  63.    Dunlap, Peter Eichhorn, Carl Friedberg, Terry Kennedy, Gⁿnter Knauf,
  64.    Jason Lehr, Arthur Marsh, Lewis McCarthy, Gary Mills, Ed Ravin,
  65.    Jonathan Reams, Mike Rechtman, Mark Sapiro, Steven Schweda (SMS),
  66.    Kinjal Shah, Michael Sokolov, Andy Tanenbaum, Seth Theriault, Zach A.
  67.    Thomas, Martin VorlΣnder, and Eric Weaver for assistance, and to
  68.    Hewlett-Packard Company for support.
  69.  
  70.      - Frank da Cruz   [37]fdc@columbia.edu, 30 June 2011
  71.  
  72.    P.S. It occurred to me just before the end of the day that maybe I
  73.    should back up the Kermit website on DVD, just in case. Using
  74.    [38]Kermit 95 on the desktop over an SSH connection to the Unix file
  75.    system where the website resides, I made a fresh directory on the PC,
  76.    CD'd to it, and on Unix cd'd to the Website directory, and told
  77.    C-Kermit 9.0 to:
  78.  
  79. C-Kermit> send /recursive /dotfiles /nobackup *
  80.  
  81.    and it re-created the website directory tree in the PC directory, text
  82.    files correctly converted to Windows format and binary files correctly
  83.    left as-is. The /dotfiles switch means to include files such as
  84.    .htaccess whose names start with a dot (period), and the /nobackup
  85.    switch means to skip backup files created by EMACs (such as
  86.    index.html.~243~). And then I did the same with the FTP sites, about
  87.    8GB in all. Watching the file-transfer display was kind of like having
  88.    30 years of my life flash before my eyes in a few minutes. Then I
  89.    copied the two directories to DVD (the FTP site had to be split over 2
  90.    DVDs). The whole operation took under half an hour. The directory tree
  91.    on the CD is directly usable in Windows, Unix, or any other operating
  92.    system (unlike if I had transferred the files all in binary mode or all
  93.    in text mode, or if I had made, say, a gzipped tar archive or a zip
  94.    archive). I believe that, to this day, Kermit is the only software that
  95.    can do this. If someday I have to upload from these DVDs to Unix, VMS,
  96.    or any other operating system, it can be done exactly the same way,
  97.    with any necessary conversions on text files done automatically, and
  98.    binary files left intact, recursively through a whole very large
  99.    directory tree.
  100.  
  101. What's New in General
  102.  
  103.    Very briefly, the major items:
  104.      * [39]Open Source license.
  105.      * [40]64-bit file access and transfer and 64-bit integer arithmetic
  106.        on most common platforms.
  107.      * Support for recent releases of Linux, Mac OS X, *BSD, etc ([41]see
  108.        table).
  109.      * Support for newer OpenSSL releases up to and including 1.0.0d
  110.        ([42]see table).
  111.      * [43]Strengthened error checking for file transfer under extremely
  112.        harsh conditions.
  113.      * [44]Simplified semantics for variables used in scripts.
  114.      * Super-handy [45]extensions to the RENAME command.
  115.      * Other scripting improvements including support for reading and
  116.        writing [46]CSV and TSV files.
  117.      * [47]MIME character-set names are now recognized.
  118.      * Improved logging and debugging (see demo [48]here).
  119.      * Lots more described or listed below, and [49]here.
  120.  
  121. Open Source License
  122.  
  123.    C-Kermit 9.0 has the [50]Revised 3-Clause BSD License, an open source
  124.    license approved by OSI, the [51]Open Source Initiative.
  125.  
  126. Large Files
  127.  
  128.    Kermit is, first and foremost, a file-transfer program. One might
  129.    expect it to be able to transfer any kind of file, but that has been
  130.    decreasingly the case as file sizes began to cross the 2 gigabyte
  131.    threshold.
  132.  
  133.    The biggest change since C-Kermit 8.0.211 is support for large files on
  134.    platforms that support them. A "large file" is one whose size is
  135.    greater than 2^31-1 (2,147,483,647) bytes (2GB-1); that is, one whose
  136.    size requires more than 31 bits to represent. Before now, Kermit was
  137.    able to access such files only on 100% 64-bit platforms such as Digital
  138.    Unix, later known as Tru64 Unix. In the new release, Kermit takes
  139.    advantage of the X/Open Single UNIX Specification Version 2 (UNIX 98)
  140.    Large File Support (LFS) specification, which allows 32-bit platforms
  141.    to create, access, and manage files larger than 2GB.
  142.  
  143.    Accommodating large files required code changes in many modules,
  144.    affecting not only file transfer, but also file management functions
  145.    from directory listings to local file manipulation, plus the user
  146.    interface itself to allow entry and display of large numbers. All this
  147.    had to be done in a way that would not affect pure 32-bit builds on
  148.    platforms that do not support large files. Large file support is
  149.    summarized in the [52]Table of Platforms; entries in Yellow (32-bit
  150.    builds that support 64-bit integers) and Green (64-bit builds) support
  151.    large files.
  152.  
  153.    Note that VMS C-Kermit and Kermit 95 for Windows have always been able
  154.    to transfer large files. However their user interface used 32-bit
  155.    integers for statistics and the file transfer display. In C-Kermit 9.0
  156.    Alpha.03, VMS C-Kermit on 64-bit platforms (Alpha and Itanium) should
  157.    now give correct statistics and progress displays. (We'll see about
  158.    Kermit 95 later.)
  159.  
  160. How to Test Large-File Transfer
  161.  
  162.    Several methods are available for testing large-file transfers:
  163.      * By transferring a real file that is more than 2147483648 bytes long
  164.        (a file whose length requires more than 31 bits to express); or to
  165.        be totally sure, that is longer than 4294967296 bytes (32 bits or
  166.        more). Or to be double super sure, longer than 8589934592 (33
  167.        bits).
  168.      * If you don't have such a file or there is not sufficient disk space
  169.        for such a file, you can create a special kind of file that takes
  170.        up one block on the disk but appears to be 4.3GB long by compiling
  171.        and running [53]THIS C PROGRAM on Linux, Solaris, HP-UX, or other
  172.        Unix platform that supports large files. Kermit or FTP or any other
  173.        file transfer program will transfer the result (BIGFILE) in such a
  174.        way as to actually put 4.3GB (or other desired size; see source) on
  175.        the wire.
  176.      * You can use Kermit's CALIBRATE feature to transfer a large file
  177.        that doesn't exist. At the receiver, use RECEIVE /CALIBRATE. At the
  178.        sender, use SEND /CALIBRATE:length, e.g.:
  179.  
  180.      (At remote kermit...)
  181.      $ kermit -Y
  182.      C-Kermit> receive /calibrate
  183.      (Return to local kermit...)
  184.      Ctrl-\c
  185.      C-Kermit> send /calibrate:4300000000
  186.        This sends a simulated file 4.3GB in length, that does not exist on
  187.        the sender and will not take up any disk space on the receiver.
  188.        SEND /CALIBRATE: accepts big numbers only in Kermit versions that
  189.        support them (this does not include Kermit 95 on Windows). This
  190.        method tests only Kermit's ability to express and understand large
  191.        file sizes, but does not test Kermit's file-system interface, since
  192.        no files are involved.
  193.  
  194. Arithmetic with Large Integers
  195.  
  196.    Because large file support requires the availability of a 64-bit signed
  197.    integer data type, other aspects of C-Kermit were adapted to use it
  198.    too, most notably Kermit's algebraic expression evaluator and its
  199.    [54]S-Expression interpreter, on all platforms that support large files
  200.    (those listed as 64 or 32/64 in the Word column of the [55]table). In
  201.    fact, every Kermit command that parses a number in any field can now
  202.    parse a large number on those platforms.
  203.  
  204.    S-Expressions can now be forced to operate with integers only, without
  205.    floating-point conversion or having to explicitly truncate each result;
  206.    as an example. see the revised [56]Easter date calculation script.
  207.  
  208. FORCE-3 Packet Protocol
  209.  
  210.    The Kermit protocol has proven itself over the past 30 years to be
  211.    robust in terms of surviving harsh transmission environments and
  212.    delivering the data correctly and completely. In these times of
  213.    Internet everywhere and error-correcting modems in the few places where
  214.    the Internet isn't, few people even recall the kinds of difficult
  215.    conditions that were common when the Kermit protocol was first
  216.    developed: noisy telephone lines, serial interfaces that drop
  217.    characters, lack of transparency to control or 8-bit characters,
  218.    absence of flow control, "bare" modems without error correction.
  219.  
  220.    But the Internet is not everywhere, and not all modems are
  221.    error-correcting. Perhaps the most difficult trial so far for Kermit or
  222.    any other protocol is the [57]EM-APEX project, in which floats are
  223.    dropped into the ocean from an aircraft into the path of a hurricane;
  224.    these floats dive into the water measuring current, temperature, and
  225.    salinity at different depths and then surface to phone home, sending
  226.    the data to land stations using Kermit protocol over
  227.    non-error-correcting 300bps [58]Iridium satellite modems, with high
  228.    seas and winds battering the floats and heavy ([59]sometimes
  229.    electrical) storms between the modem and the satellite.
  230.  
  231.    Because of the transmission speed and long distances involved, the
  232.    transfers were very slow. The Kermit software in the floats is
  233.    [60]Embedded Kermit, which did not implement sliding windows, which
  234.    would have sped up the flow considerably. John Dunlap, engineer at the
  235.    University of Washington's Applied Physics Laboratory, undertook the
  236.    task of adding sliding windows to E-Kermit. For testing, he rigged up a
  237.    [61]simulator in which Kermit transfers take place over a connection
  238.    with different amounts of noise and delay. He found that occasionally,
  239.    a transfer would appear to succeed, but the received file would be
  240.    corrupt.
  241.  
  242.    According to the Kermit protocol definition, the first packet always
  243.    has block-check type 1, a 6-bit checksum, which is the only block check
  244.    type that all Kermit implementations are required to support; thus any
  245.    Kermit partner can process this packet. This packet itself can
  246.    negotiate a higher level of checking, such that subsequent packets have
  247.    (say) block-check type 3, a 16-bit cyclic redundancy check (CRC)
  248.    encoded as three printable 7-bit ASCII characters. The 16-bit CRC can
  249.    catch all errors of certain kinds (single-bit, double-bit, bursts of 16
  250.    bits or less), and more than 99.9984741210937% of all other possible
  251.    errors.
  252.  
  253.    John's simulations revealed that file corruption could occur undetected
  254.    when the initial packet was corrupted in such a way that a parameter or
  255.    capability byte was changed and the checksum also changed to make the
  256.    packet appear to be correct, thus allowing the transfer to proceed with
  257.    the two Kermit partners out of sync as to packet encoding and
  258.    interpretation (the chances of two such errors producing a seemingly
  259.    valid packet are about 1 in 6000 when using the 6-bit checksum). For
  260.    example, the compression technique might be misnegotiated and then the
  261.    receiver might store incoming data without decompressing it.
  262.  
  263.    The solution is a new option, selected by:
  264.  
  265.      BLOCK-CHECK TYPE 5
  266.  
  267.    to require a type 3 block check (16-bit CRC) on every packet, including
  268.    the initial ones, thus reducing the probability of a misnegotiation by
  269.    many orders of magnitude. THIS PARAMETER CAN NOT BE NEGOTIATED. Each
  270.    Kermit program must be given the "set block 5" command prior to
  271.    transfer. That's because normally every Kermit program expects the
  272.    first packet to have a 6-bit checksum, and if the first packet has a
  273.    3-byte, 16-bit CRC, the packet receiver will think it is corrupted.
  274.  
  275.    In practice, however, it is possible to code the packet receiver
  276.    "cheat" by reading the packet data before verifying the block check.
  277.    Thus when the receiver is C-Kermit 9.0 or later or E-Kermit 1.7 or
  278.    later, it is only necessary to give the "set block 5" command to the
  279.    file sender, and the receiver will check for a FORCE-3 first packet. If
  280.    the receiver does not support this feature, however, the the initial
  281.    packet will be be rejected (after several retries) and the file
  282.    transfer will not take place. There is no attempt to "back off" to
  283.    normal behavior.
  284.  
  285.    CAPTION: Table 4. Kermit Protocol Packet Block Check Types
  286.  
  287.    Type Command Bytes Status Explanation
  288.    1 SET BLOCK 1 1 Required in all Kermit implementations. Negotiated.
  289.    6-bit checksum, suitable for good connections.
  290.    2 SET BLOCK 2 2 Optional, negotiated. 12-bit checksum. 64 times
  291.    stronger than type 1.
  292.    3 SET BLOCK 3 3 Optional, negotiated. 16-bit CRC.
  293.    BLANK-FREE-2 SET BLOCK 4 2 Optional, negotiated. 12-bit checksum, two
  294.    nonblank bytes.
  295.    FORCE-3 SET BLOCK 5 3 Optional, not negotiated. 16-bit CRC forced all
  296.    packets.
  297.  
  298.    BLANK-FREE-2 is for environments where Kermit packets are treated as
  299.    lines of text, and in which trailing blanks can be stripped; for
  300.    example, when transferring files with an IBM mainframe through a 3270
  301.    protocol converter.
  302.    [62]E-Kermit 1.7
  303.  
  304. Variable Evaluation
  305.  
  306.      Does the strange behavior of Kermit's \%x variables puzzle or annoy
  307.      you?
  308.  
  309.    Kermit software development has been a collaborative project over the
  310.    years, with contributions coming in from almost every country and every
  311.    sector of the economy - academic, corporate, government. Thus not all
  312.    versions, and not all features of a given version, are a product of
  313.    systematic design.
  314.  
  315.    One example was the introduction of variables for text substitution,
  316.    first in a version of MS-DOS Kermit that was sent in by someone
  317.    somewhere (I could look it up, but no time...) Although the design of
  318.    the notation for variable names (table below) is mine, the underlying
  319.    code was contributed. In that code there was only one kind of variable,
  320.    and if I recall correctly the variable name was a backslash followed by
  321.    a single letter, for example \a, \b, etc. The contributed code
  322.    evaluated these variables recursively, meaning if the definition of a
  323.    variable contained variable references, then these were resolved when
  324.    dereferencing the variable, and the process would continue as deep down
  325.    as necessary to resolve the thing fully.
  326.  
  327.    This was sometimes handy, but it had one severe drawback: There was no
  328.    way to use variables in a straightforward way to represent strings that
  329.    contained literal backslashes; for example, DOS or Windows pathnames.
  330.    This gave rise to all kinds of quoting rules and conventions (e.g.
  331.    doubling backslashes or forcing single-level evaluation with
  332.    \\fcontents()), and also to the introduction of other kinds of
  333.    variables that were evaluated one level deep, rather than recursively.
  334.  
  335.    To accommodate coexistence of different kinds of variables as well as
  336.    "escape sequences" for representing control and 8-bit characters, the
  337.    syntax for variable names was extended to include three elements: the
  338.    leading backslash, then a single character indicating the type of
  339.    variable, and then the name of the variable in a format corresponding
  340.    to the type designator, as shown in this somewhat simplified table:
  341.  
  342.    CAPTION: Table 1. Variable-name Syntax in Kermit
  343.  
  344.    Notation Meaning
  345.    \000 - \255 8-bit character constant (decimal)
  346.    \d000 - \d255 Alternative notation for 8-bit character (byte) constant
  347.    (decimal)
  348.    \o000 - \o377 8-bit character constant (octal)
  349.    \x00 - \xff 8-bit character constant (hexadecimal)
  350.    \%a - \%z Scalar variable, evaluated recursively.
  351.    \%0 - \%9 Macro argument, scalar, evaluated recursively.
  352.    \&a - \%& Array name
  353.    \&a[x] Array reference, evaluated recursively (x is any constant or
  354.    variable)
  355.    \v(name) Built-in scalar variable, evaluated one level deep.
  356.    \m(name) User-defined scalar variable, evaluated one level deep.
  357.    \$(name) An environment variable, evaluated one level deep.
  358.    \s(name[n:m]) Compact substring notation, evaluated one level deep.
  359.    \fname(args...) Built-in function with zero or more arguments.
  360.    \\ Literal backslash
  361.    \N OUTPUT command only: NUL, ASCII 0
  362.    \B OUTPUT command only: BREAK (250ms, for serial connections)
  363.    \L OUTPUT command only: Long BREAK (1.5sec, ditto)
  364.  
  365.    Variable names in Kermit are case-independent. The simplifications in
  366.    the table are that the notation for decimal and octal bytes can have
  367.    from one to three digits, and can include braces to separate them from
  368.    text digits, e.g. \7, \{123}, \o{50}. Hex bytes too, except they must
  369.    always have exactly two hex digits, 0-9a-f. Array indices must be, or
  370.    must evaluate to, numbers (floating point numbers are truncated).
  371.    Associative arrays are also available (dynamic arrays with arbitrary
  372.    text as subscript), but they are really just a variation on \m()
  373.    variables (read about associative arrays [63]here). Also, there are
  374.    some alternative notations for compact substring notation.
  375.  
  376.    We didn't want to have lots of "distinguished" characters, as the UNIX
  377.    shell does; one is enough, clarity over brevity. Although the notation
  378.    can be a bit cumbersome, we can use the \m(name) form to circumvent the
  379.    overevaluation in most contexts. But macro arguments are always
  380.    assigned to the \%0-9 variables, and thus always evaluated recursively,
  381.    making it difficult and confusing to pass (e.g.) Windows pathnames as
  382.    arguments to macros. The same is true for array elements, especially in
  383.    contexts where they are used to return results from built-in functions
  384.    (for example, \fsplit() used to return the elements of a
  385.    [64]comma-separated value list if any of the values contained
  386.    backslashes). An even worse scenario is when macro arguments are passed
  387.    from one macro to another; for some graphic illustrations see
  388.    [65]Taming the Wild Backslash - Part Deux from the [66]C-Kermit 7.0
  389.    Update Notes.
  390.  
  391.    We can't just change how variables are evaluated because that would
  392.    break existing scripts. But we can always add Yet Another SET Command:
  393.  
  394.      SET COMMAND VARIABLE-EVALUATION { RECURSIVE, SIMPLE }
  395.  
  396.    This applies only to \%a-z and \%0-9 variables and to \&a-z[] arrays
  397.    (since all other kinds of variables are evaluated only one level deep).
  398.    The default, of course, for backwards compatibility, is RECURSIVE.
  399.    SIMPLE forces the evaluation of these variables to return their literal
  400.    contents, without further evaluation:
  401.  
  402.      * An exception is made in the case of array subscripts, because
  403.        changing how they are evaluated could break a lot of scripts, and
  404.        anyway there should never be any harm in evaluating them
  405.        recursively because their final value is always (or should be)
  406.        numeric, not some string that might contain backslashes.
  407.      * The VARIABLE-EVALUATION setting is on the command stack. Thus you
  408.        can give this command in a macro, command file, or user-defined
  409.        function without affecting the calling environment.
  410.      * The new \frecurse() function forces recursive evaluation of its
  411.        argument regardless of the VARIABLE-EVALUATION setting. The
  412.        argument can be any string (or nothing at all); all the variables
  413.        in the string, even \m() ones, are evaluated recursively:
  414.  
  415. def \%a 1 \%b 3
  416. def \%b 2
  417. def xx easy as \%a
  418. show mac xx
  419. echo \frecurse(\m(xx))
  420. easy as 1 2 3
  421. echo \frecurse(it's as easy as \m(xx))
  422. it's as easy as easy as 1 2 3
  423.  
  424.      * The new \v(vareval) built-in variable contains the current setting
  425.        (recursive or simple) at the current command-stack level.
  426.  
  427.    Here's a short script for illustration:
  428.  
  429. define path c:\users\fdc\somefile.txt
  430. define test1 {        # Normal recursive argument evaluation
  431.   echo \%0: arg=\%1
  432. }
  433. define test2 {        # Simple argument evaluation
  434.   set var simple
  435.   echo \%0: arg=\%1
  436. }
  437. test1 \m(path)
  438. test2 \m(path)
  439. exit
  440.  
  441.    And here's the result:
  442.  
  443. ?<ERROR:NO_SUCH_FUNCTION:\fdc\somefile.txt()>
  444. test2: arg=c:\users\fdc\somefile.txt
  445.  
  446.    The first line might seem surprising, but under the normal rules (see
  447.    table above) \f indicates a function call, with the letters following
  448.    the 'f' being the name of the function. But there is no function by
  449.    that name... and if there were, you probably didn't intend to call it!
  450.  
  451.    SET COMMAND VARIABLE-EVALUATION SIMPLE has no effect on constants, only
  452.    on variables. Note how \m(path) is defined. The DEFINE command assigns
  453.    the literal value of its argument to the named variable (see Table 3
  454.    below), thus in this case no special syntax is needed. But in other
  455.    contexts, you must double the backslashes or use the \fliteral()
  456.    function to use literal backslashes in data:
  457.  
  458. test2 c:\\users\\fdc\\somefile.txt
  459. test2 \fliteral(c:\users\fdc\somefile.txt)
  460.  
  461.    C-Kermit 9.0 adds a new notation for \fliteral() which also has certain
  462.    advantages over it: \q(string):
  463.  
  464. test2 \q(c:\users\fdc\somefile.txt)
  465.  
  466.    Since \fliteral() is a function, its argument list (the text within
  467.    parentheses) has special syntax of its own, in which commas and braces
  468.    are treated specially and introduce another set of quoting problems.
  469.    \q(string) doesn't have these problems. The only consideration is that
  470.    parentheses must be balanced or else quoted (preceded by backslash), or
  471.    represented as numeric character entities (left paren = \40, (right
  472.    paren = \41).
  473.  
  474.    Or else hold the value in a simple variable as we did with \\m(path)
  475.    above.
  476.  
  477.    SET COMMAND VARIABLE-EVALUATION SIMPLE is a big change and might have
  478.    repercussions that didn't show up in the initial tests; a lot more
  479.    testing is needed.
  480.  
  481.    On the topic of variables, let's summarize in one place the ways in
  482.    which values can be explicitly assigned to variables. There is nothing
  483.    new here except the table itself:
  484.  
  485.    CAPTION: Table 2. Variable Assignment in Kermit
  486.  
  487.    Command Shorthand Explanation
  488.    DEFINE name value .name = value The literal value becomes the contents
  489.    of the named variable; variables names in the value are copied without
  490.    evaluation. This command is for defining macros that take parameters,
  491.    as well as for defining simple variables, especially if the values
  492.    contain backslashes.
  493.    _DEFINE name value   Like DEFINE but the name is evaluated before use.
  494.    ASSIGN name value .name := value The value is evaluated and the result
  495.    becomes the contents of the named variable.
  496.    _ASSIGN name value   Like ASSIGN but the name is evaluated before use.
  497.    EVALUATE name expression .name ::= value The expression (in regular
  498.    algebraic notation) is evaluated arithmetically and the result becomes
  499.    the contents of the named variable. If the expression contains any
  500.    variables they are evaluated first.
  501.    _EVALUATE name expression   Like EVALUATE but the name is evaluated
  502.    before use.
  503.    INCREMENT name expression   Evaluates the variables in the expression,
  504.    then evaluates the expression arithmetically, and then adds the value
  505.    to the contents of the named variable, which must be a number or an
  506.    algebraic expression. If the expression is empty, a value of 1 is used.
  507.    _INCREMENT name expression   Like INCREMENT but the name is evaluated
  508.    before use.
  509.    DECREMENT name expression   Evaluates the variables in the expression,
  510.    then evaluates the expression arithmetically, and then subtracts the
  511.    value from the contents of the named variable, which must be a number
  512.    or an algebraic expression. If the expression is empty, a value of 1 is
  513.    used.
  514.    _DECREMENT name expression   Like DECREMENT but the name is evaluated
  515.    before use.
  516.    DECLARE name = list   An array declaration can include an initializer
  517.    list; items in the list are evaluated before assignment. This can be
  518.    defeated by doubling any backslashes or enclosing individual arguments
  519.    in \fliteral().
  520.    DO name arguments name arguments When invoking a macro with a DO
  521.    command (or an implied one), the arguments are evaluated, then assigned
  522.    to \%1, \%2, etc, and the macro's name to \%0.
  523.    (SETQ name value)   Kermit also includes a mini-[67]LISP interpreter
  524.  
  525.    Variables are evaluated automatically in Kermit commands simply by
  526.    referencing them, according to rules given in Table 1. The following
  527.    functions can be used to change how a a particular variable is
  528.    evaluated:
  529.  
  530.    CAPTION: Table 3. Kermit Functions for Evaluating Variables
  531.  
  532.    Function Argument Description
  533.    \fcontents() \%x or \&x[y] Evaluates the variable or array element
  534.    (which normally would be evaluated recursively) one level deep.
  535.    \fdefinition() name If the argument is a \%x variable or an array
  536.    element, it is evaluated to get the name; otherwise the argument is the
  537.    name. Its definition is returned with no recursion.
  538.    \m() name Equivalent to \fdefinition().
  539.    \frecurse() \m(name) Forces recursive evaluation of a macro definition
  540.    (a.k.a. long variable name). NOTE: \frecurse() can operate on any kind
  541.    of variable as well as on any string containing any mixture of
  542.    variables.
  543.  
  544. C-Kermit's RENAME Command
  545.  
  546.    C-Kermit's RENAME command, which is used for changing the names of
  547.    local files or for moving files locally, has two basic forms:
  548.  
  549.    RENAME [ optional-switches ] oldfilename newfilename
  550.           This form lets you change the name of a single file from
  551.           oldfilename to newfilename. Example:
  552.           rename thismonth.log lastmonth.log
  553.  
  554.    RENAME [ optional-switches ] filespec directoryname
  555.           This form lets you move (without renaming) one or more files
  556.           (all the files that match the filespec, which may contain
  557.           wildcard characters such as "*") to the given directory.
  558.           Example:
  559.           rename *.txt ~/textfiles/
  560.  
  561.    Traditionally, the optional switches have been:
  562.  
  563.    RENAME /LIST oldname newname
  564.           Display the old and new name for each file while renaming.
  565.           Synonyms: /LOG, /VERBOSE. Example:
  566.           rename /list *.txt ~/textfiles/
  567.  
  568.    RENAME /NOLIST oldname newname
  569.           Don't display the old and new name for each file while renaming.
  570.           This is the default behavior. Synonyms: /NOLOG, /QUIET. Example:
  571.           rename /nolist *.txt ~/textfiles/
  572.  
  573.    Reminder: Every switch starts with a slash (/) and must be preceded by
  574.    a space.
  575.  
  576. New RENAME Features for C-Kermit 9.0
  577.  
  578.    A series of new options (switches) have been added to let you change
  579.    the names of multiple files at once by case conversion, string
  580.    substitution, or character-set conversion, and optionally also move
  581.    them to a different directory:
  582.  
  583.      /LOWER:      Convert the filename to lowercase
  584.      /UPPER:      Convert the filename to uppercase
  585.      /CONVERT:    Change the filename's character encoding
  586.      /REPLACE:    Do string substitutions on the filename
  587.  
  588.    If the source-file specification includes a path or directory, any
  589.    changes are applied to the filenames only, not to the directory or path
  590.    specification.
  591.  
  592.    Since name changes, when applied to many files at once, can have
  593.    consequences that are not easily undone, there are also some new
  594.    controls, safeguards, and conveniences:
  595.  
  596.    RENAME /SIMULATE
  597.           This switch tells Kermit to show you what the RENAME command
  598.           would do without actually doing it. /SIMULATE implies /LIST.
  599.  
  600.    RENAME /COLLISION:{FAIL,SKIP,OVERWRITE}
  601.           This switch governs Kermit's behavior when renaming multiple
  602.           files, and any of the names would collide with the name of a
  603.           file that already exists. The default, for compatibility with
  604.           earlier releases of C-Kermit, is OVERWRITE, i.e. write over the
  605.           existing file. The other two protect existing files. SKIP means
  606.           to skip (not rename) the file that would cause the collision,
  607.           and proceed to the next file, if any. FAIL means that no files
  608.           will be renamed if there would be any collisions; for this
  609.           Kermit makes two passes, checking each new name it constructs
  610.           for existence before starting the second pass (however, there is
  611.           no guarantee that in the second pass, it won't create the same
  612.           new name for more than one file; in that case, it will stop
  613.           before executing the second rename). Example:
  614.           rename /simulate /collision:proceed * ~/tmp/
  615.  
  616.    Reminder: In switches such as /COLLISION that take arguments
  617.    (operands), the switch name and its argument(s) are separated by a
  618.    colon (:) with no intervening spaces. Also remember that Kermit
  619.    keywords can always be abbreviated by leaving off characters from the
  620.    right, as long as the result is still unique in its context. Thus "ren
  621.    /col:f" would be equivalent to "rename /collision:fail".
  622.  
  623.    You can change the following preferences for the RENAME command with
  624.    the new SET RENAME command:
  625.  
  626.    SET RENAME LIST { ON, OFF }
  627.           Tells the RENAME command whether to list its actions if you
  628.           don't include a /LIST or /NOLIST or equivalent switch.
  629.  
  630.    SET RENAME COLLISION { FAIL, OVERWRITE, SKIP }
  631.           Tells the RENAME command how to handle filename collisions in
  632.           the absence of a /COLLISION switch. That is, it replaces the
  633.           default action of OVERWRITE with action of your choosing, which
  634.           is then used in any RENAME command that does not include an
  635.           explicit /COLLISION switch.
  636.  
  637.    SHOW RENAME
  638.           Displays the current SET RENAME settings.
  639.  
  640. Changing the Case of Filenames
  641.  
  642.    RENAME /UPPER:{ALL,LOWER} filespec [ directory ]
  643.           RENAME /LOWER:{ALL,UPPER} filespec [ directory ]
  644.           These switches let you change the alphabetic case of letters in
  645.           all the files whose names match the filespec. If a directory
  646.           name is given after the filespec, then the files are also moved
  647.           to the given directory.
  648.  
  649.    By default, all files that match the given filespec have their names
  650.    changed (if necessary). This is what the ALL argument means, e.g.:
  651.  
  652.      RENAME /LOWER:ALL *
  653.      RENAME /LOWER *
  654.  
  655.    You can use either form: RENAME /LOWER is equivalent to RENAME
  656.    /LOWER:ALL. The other argument (/LOWER:UPPER or /UPPER:LOWER) means to
  657.    leave mixed-case filenames alone, and rename only those files whose
  658.    names contain letters of only the given case. Examples:
  659.  
  660.    RENAME /UPPER:ALL foo.bar
  661.           Changes the filename to FOO.BAR.
  662.  
  663.    RENAME /UPPER foo.bar
  664.           Same as "rename /upper:all foo.bar".
  665.  
  666.    RENAME /UPPER foo.bar ~/old/
  667.           Renames foo.bar to FOO.BAR and moves it to the user's old
  668.           directory (Unix).
  669.  
  670.    RENAME /LOWER *
  671.           Changes the names of all files to have only lowercase letters.
  672.  
  673.    RENAME /LOWER:UPPER *
  674.           Changes the names of only those files whose names contain no
  675.           lowercase letters to have only lowercase letters. For example,
  676.           FOO.BAR would be changed, Foo.Bar would not be changed. foo.bar
  677.           would not be changed either because it's already all lowercase.
  678.  
  679.    RENAME /LOWER:UPPER * ~/new/
  680.           Same as the previous example, but also moves each file to the
  681.           user's new directory (whether it was renamed or not).
  682.  
  683.    Case conversion works reliably for ASCII characters only. Kermit uses
  684.    the C library for this, which on any given platform might or might not
  685.    handle non-ASCII letters, and if it does, then how it works would
  686.    normally depend on your locale definitions (the LC_CTYPE and/or LANG
  687.    environment variable in Unix). When non-ASCII letters are not handled
  688.    by the C library, the RENAME command does change their case. For
  689.    example, Olga_Ta±≤n.txt might become OLGA_TA±≤N.TXT.
  690.  
  691. String Replacement in Filenames
  692.  
  693.    The RENAME command also lets you change filenames by string
  694.    substitution.
  695.  
  696.    RENAME /FIXSPACES[:String] filespec [ directory ]
  697.           Replaces all spaces in each matching filename by the given
  698.           string, if any, or if none is given, by underscore. Examples:
  699.  
  700.      RENAME /FIX *
  701.      RENAME /FIXSPACES:_ *
  702.      RENAME /FIXSPACES:"" *
  703.      RENAME /FIXSPACES:<040> *
  704.  
  705.           The first two are equivalent, replacing each space with
  706.           underscore; a file called "My Favorite Photo.jpg" becomes
  707.           "My_Favorite_Photo.jpg". The third example removes all spaces
  708.           ("MyFavoritePhoto.jpg"). The fourth replaces each space with the
  709.           string "<040>" ("My<040>Favorite<040>Photo.jpg").
  710.  
  711.    RENAME /REPLACE:{{String1}{String2}} filespec [ directory ]
  712.           Renames each matching file by changing occurrences of String1 in
  713.           its name to String2. If a directory specification is included,
  714.           the file is also moved to the given directory (even if the name
  715.           was not changed). Note that in this case, the curly braces are
  716.           part of the command. Example:
  717.  
  718.      RENAME /REPLACE:{{.jpeg}{.jpg}} *
  719.  
  720.           changes all *.jpeg files to *.jpg.
  721.  
  722.    By default, RENAME /REPLACE changes all occurrences of String1 in each
  723.    filename to String2 so, for example, if you had a file called
  724.    abcjpegxyz.jpeg, the command just shown would change its name to
  725.    abcjpgxyz.jpg.
  726.  
  727.    For greater control and flexibility, the /REPLACE: switch argument can
  728.    take several distinct forms:
  729.  
  730.    RENAME /REPLACE:String1 filespec [ directory ]
  731.           This means to remove all occurrences of String1 from the given
  732.           filenames name. It is equivalent to /REPLACE:{{String1}{}}. A
  733.           handy use for this option is to remove spaces from filenames.
  734.  
  735.    RENAME /REPLACE:{{String1}{String2}} filespec [ directory ]
  736.           As already noted, this replaces every occurrence of String1 with
  737.           String2 in each filename. Alphabetic case in string matching is
  738.           done according to the current SET CASE setting.
  739.  
  740.    RENAME /REPLACE:{{ }{_}} filespec [ directory ]
  741.           This replaces all spaces in the given filenames with underscore,
  742.           equivalent to RENAME /FIXSPACES.
  743.  
  744.    RENAME /REPLACE:{{String1}{String2}{Options}} filespec [ directory ]
  745.           Options can be included that add more control to the process.
  746.           The option string is a sequence of characters; each character in
  747.           the string is an option. The choices are:
  748.  
  749.    A String matching is to be case-sensitive, regardless of SET CASE.
  750.    a String matching is to be case-independent, regardless of SET CASE.
  751.    ^ String replacement will occur only at the beginning of the filename.
  752.    $ String replacement will occur only at the end of the filename.
  753.    1 Only the first occurrence of the string will be replaced.
  754.    2 Only the second occurrence of the string will be replaced.
  755.    3 4 5 6 7 8 ...
  756.    9 Only the ninth occurrence of the string will be replaced.
  757.    - (hyphen, minus sign) Before a digit: occurrences will be counted from
  758.    the right.
  759.    ~ (tilde) Before digit or minus sign: all occurrences but the given one
  760.    will be replaced.
  761.  
  762.    The tilde modifier works only with single-byte character sets such as
  763.    ASCII, CP437, ISO 8859-1, etc, but not with multibyte character sets
  764.    such as UCS2, UTF8, or any of the Japanese Kanji sets.
  765.  
  766.    Here are some examples showing how to use the /REPLACE options:
  767.  
  768.    RENAME /REPLACE:{{foo}{bar}{^}} *
  769.           For all files whose names start with "foo", replaces the "foo"
  770.           at the beginning with "bar".
  771.  
  772.    RENAME /REPLACE:{{}{New-}{^}} *
  773.           Prepends "New-" to the name of each file.
  774.  
  775.    RENAME /REPLACE:{{.jpeg}{.jpg}{$}} *
  776.           Replaces ".jpeg" at the end of each filename with ".jpg".
  777.  
  778.    RENAME /REPLACE:{{}{-Old}{$}} *
  779.           Appends "-Old" to the name of each file.
  780.  
  781.    RENAME /REPLACE:{{foo}{bar}{a}} *
  782.           Replaces "foo", "FOO", "Foo", "fOO", etc, with "bar" in each
  783.           filename.
  784.  
  785.    RENAME /REPLACE:{{foo}{bar}{A}} *
  786.           Replaces only (lowercase) "foo" in filenames with "bar".
  787.  
  788.    RENAME /REPLACE:{{a}{XX}} *
  789.           Changes every "a" to "XX". For example a file called "a.a.a.a"
  790.           would become "XX.XX.XX.XX".
  791.  
  792.    RENAME /REPLACE:{{a}{X}{2}}
  793.           Changes only the second "a" to "X". For example a file called
  794.           "a.a.a.a" would become "a.X.a.a".
  795.  
  796.    RENAME /REPLACE:{{a}{X}{-1}}
  797.           Changes only the final "a" in the filename (it doesn't have to
  798.           be at the end) to "X". For example a file called "a.b.a.c.a.d"
  799.           would become "a.b.a.c.X.d".
  800.  
  801.    RENAME /REPLACE:{{foo}{NOTFOO}{-2}}
  802.           Changes the second-to-last "foo" (if any) in the filename to
  803.           "NOTFOO".
  804.  
  805.    RENAME /REPLACE:{{foo}{}{-2}}
  806.           Deletes the second-to-last "foo" (if any) from the filename.
  807.  
  808.    RENAME /REPLACE:{{.}{_}{~1}}
  809.           Changes all but the first period to an underscore; for example,
  810.           "a.b.c.d.e" would become "a.b_c_d_e".
  811.  
  812.    RENAME /REPLACE:{{.}{_}{~-1}}
  813.           Changes all but the final period to an underscore; for example,
  814.           "a.b.c.d.e" would become "a_b_c_d.e".
  815.  
  816.    In the Options field, digits (and their modifiers), ^, and $ are
  817.    mutually exclusive. If you include more than one of these in the option
  818.    string, only the last one is used. Similarly for 'a' and 'A':
  819.  
  820.    RENAME /REPLACE:{{foo}{bar}{Aa2$^}} *
  821.           This replaces "foo" with "bar" no matter what combination of
  822.           upper and lower case letters are used in "foo" ('a' overrides
  823.           'A' in the option string), but only if "foo" is at the beginning
  824.           of the filename ('^' overrides '$' and '2').
  825.  
  826.    If you give an /UPPER or /LOWER switch and a /REPLACE switch in the
  827.    same RENAME command, the /REPLACE action occurs first, then the case
  828.    conversion:
  829.  
  830.    RENAME /REPLACE:{{foo}{bar}} /UPPER * /tmp
  831.           For each file: changes all occurrences of "foo" in the name to
  832.           "bar", then converts the result to uppercase, and then moves the
  833.           file to the /tmp directory. So (for example) "foot.txt" would
  834.           become "/tmp/BART.TXT".
  835.  
  836. Changing the Character Encoding of Filenames
  837.  
  838.    As you know, text is represented on the computer as a series of
  839.    numbers, with a given number corresponding to a given character
  840.    according to some convention or standard. Filenames are represented the
  841.    same way. The trouble is, different computers, or even different
  842.    applications on the same computer, might use different standards or
  843.    conventions ("character sets") for representing the same characters.
  844.    Usually ASCII is safe, but anything beyond that -- non-ASCII characters
  845.    such as accented or non-Roman letters -- is likely to vary. Sometimes
  846.    you have text that's in the "wrong" character set and you need to
  847.    convert it to something you can can use. Kermit has always been able to
  848.    handle this as part of file transfer and terminal emulation, as well as
  849.    being able to convert text files locally with its TRANSLATE command.
  850.    Now there's a way to convert filenames too, for example after copying
  851.    files from a CD that uses a different encoding:
  852.  
  853.    RENAME /CONVERT:charset1:charset2 filespec [ directory ]
  854.           Converts filenames from the first character set to the second
  855.           one. The two character sets can be chosen from the SET FILE
  856.           CHARACTER-SET list; for complete details see [68]this page. For
  857.           example suppose you have a file called "Olga_Ta±≤n.txt" on a
  858.           computer where ISO 8859-1 Latin Alphabet 1 is used, and you have
  859.           transported it (e.g. on CDROM) to another computer where the
  860.           text encoding is UTF8. Maybe you also have a lot of other files
  861.           with similar names in the same directory. You can convert the
  862.           filenames to UTF8 like this:
  863.  
  864.      RENAME /CONVERT:latin1:utf8 *
  865.  
  866.    /CONVERT can not be combined with /UPPER, /LOWER, or /REPLACE.
  867.  
  868.    You should NOT use UCS2 for filenames since this encoding is not
  869.    compatible with C strings used in Unix and elsewhere.
  870.  
  871.    RENAME /CONVERT affects only the filename, not the file's contents. You
  872.    can use the TRANSLATE command to convert the encoding of the contents
  873.    of a text file.
  874.  
  875. Other New Features
  876.  
  877.    See the [69]C-Kermit Daily Builds page for details. Very briefly:
  878.  
  879.      * Perhaps most important, modernized makefile targets for the major
  880.        Unix platforms: Linux, Mac OS X, AIX, Solaris, etc. These are
  881.        somewhat automated; not autoconf exactly, but they cut down
  882.        significantly on redundant targets. For example, one single "linux"
  883.        target works on many (hopefully all) different Linux
  884.        configurations, where before different targets were required for
  885.        different combinations of (e.g.) curses / ncurses / no curses;
  886.        32-bit / 64-bit; different feature sets and library locations.
  887.        (Separate targets are still required for Kerberos and/or SSL
  888.        builds, but they are "subroutinized".)
  889.      * Bigger buffers, more storage for commands, macros, scripts,
  890.        strings, and filename expansion in 64-bit versions and in 32-bit
  891.        versions that support large files.
  892.      * User-settable FTP timeout, works on both the data and control
  893.        connection.
  894.      * FTP access to ports higher than 16383.
  895.      * Built-in FTP client for VMS. This is the [70]same FTP client Unix
  896.        C-Kermit has had since version 8.0, minimally adapted to VMS by
  897.        SMS, supporting binary and Stream_LF file transfer only (in other
  898.        words, nothing to handle RMS files), but otherwise fully functional
  899.        (and scriptable) and theoretically capable of making connections
  900.        secured by SSL (at least it compiles and links OK with SSL - HP SSL
  901.        1.3 in this case).
  902.      * Large file support in VMS, also by SMS. Alpha and Itanium only (not
  903.        VAX). VMS C-Kermit was already able to transfer large files, but
  904.        the file-transfer display (numbers and progress bar) and statistics
  905.        were wrong because they used ints. In the present Alpha test
  906.        release, this is an optional feature requested by including the "f"
  907.        option in P1.
  908.      * New PUTENV command that allows Kermit to pass environment variables
  909.        to subprocesses (Unix only, "help putenv").
  910.      * New TOUCH command, many file selection options ("help touch").
  911.      * New DIRECTORY command options and switches (/TOP, /COUNT;
  912.        HDIRECTORY, WDIRECTORY...). To see the ten biggest files in the
  913.        current directory: "dir /top:10 /sort:size /reverse *" or
  914.        equivalently, "hdir /top:10 *". WDIR lists files in reverse
  915.        chronological order, shorthand for "dir /sort:date /reverse".
  916.      * New command FSEEK /FIND:string-or-pattern, seeks to the first line
  917.        in an FOPEN'd file that contains the given string or matches the
  918.        given pattern. Example: Suppose you have a file of lines like this:
  919.  
  920.      quantity   description...
  921.        in which the first "word" is a number, followed by a description
  922.        (for example, the name of an item). Here is how to use FSEEK to
  923.        quickly get the total quantity of any given item, which is passed
  924.        as a parameter (either a literal string or a pattern) on the
  925.        command line:
  926.  
  927. #!/usr/local/bin/kermit +
  928. if not def \%1 exit 1 Usage: \fbasename(\%0) string-or-pattern
  929.  
  930. .filename = /usr/local/data/items.log        # Substitute the actual filename
  931. set case off                                 # Searches are case-independent
  932. fopen /read \%c \m(filename)                 # Open the file
  933. if fail exit 1 "\m(filename): \v(errstring)" # Fail: exit with error message
  934. .total = 0                                   # OK: Initialize the total
  935. echo Searching "\%1"...
  936.  
  937. while true {
  938.     fseek /line /relative /find:\%1 \%c 0    # Get next line that has target
  939.     if fail break                            # Failure indicates EOF
  940.     fread /line \%c line                     # Read it
  941.     if fail break                            # (shouldn't happen)
  942.     increment total \fword(\m(line),1)       # Increment the total
  943. }
  944. fclose \%c                                   # Close the file
  945. echo Total for "\%1" : \m(total)             # Print the result
  946. exit 0
  947.  
  948.        The syntax of the FSEEK command in this example indicates that each
  949.        search should start relative to the current file line. Since Kermit
  950.        is an interpretive language, FSEEK is a lot faster than FREAD'ing
  951.        each line and checking it for the target, especially for big files.
  952.        An especially handy use for FSEEK is for use with potentially huge
  953.        sequentially timestamped logs, to seek directly to the date-time
  954.        where you want to start processing. Some other improvements for the
  955.        FOPEN/FREAD/FWRITE/FCLOSE family of commands are included also
  956.        (performance, bug fixes, convenience features), listed in the
  957.        [71]change log. (Prior to 9.0.299 Alpha.02, the FSEEK /FIND:
  958.        command always started from the top.)
  959.      * MIME synonyms for character-set names: A new equivalence between
  960.        MIME names and Kermit names for character sets, with a new table
  961.        showing the supported sets [72]HERE (this feature is also
  962.        illustrated in the [73]Weblog script).
  963.      * Unix C-Kermit SET TERMINAL TYPE now passes its arguments to
  964.        subprocesses as an environment variable.
  965.      * SET SESSION-LOG TEXT now strips out ANSI escape sequences from the
  966.        session log.
  967.      * For interacting with POP servers over clear-text or SSL-secured
  968.        connections:
  969.           + New SSL and TLS "raw" connections (no Telnet protocol).
  970.           + New INPUT command options for reading and capturing (perhaps
  971.             while scanning) continuous incoming text, such as INPUT
  972.             /NOWRAP (explained [74]HERE).
  973.           + New \femailaddress() command to extract the e-mail address
  974.             from an Internet mail message To: or From: line, used in
  975.             fetching mail from POP servers.
  976.           + Improved date parsing commands and functions for parsing the
  977.             different date formats that can appear in e-mail.
  978.           + Production scripts for fetching mail from a secure POP server,
  979.             available [75]HERE.
  980.      * Various features added to make Kermit more useful for writing CGI
  981.        scripts such as INPUT /COUNT:n to INPUT exactly n characters
  982.        (useful for reading form data).
  983.      * New \fpictureinfo() function for getting orientation and dimensions
  984.        of JPG and GIF images, described [76]HERE.
  985.      * New \fgetpidinfo() function for testing whether a given process
  986.        exists.
  987.      * \fkwdvalue() function fixed to allow multiword values.
  988.      * New function \fcount(s1,s2) to tell the number of occurrences of s1
  989.        in s2.
  990.      * New \flopx() function returns rightmost field from string (such as
  991.        a file's extension).
  992.      * New function \ffunction(s1) to tell whether a built-in s1 function
  993.        exists.
  994.      * New \fsqueeze(s1) function removes leading and trailing whitespace
  995.        from string s1, changes tabs to spaces, squeezing each run of
  996.        repeated whitespace characters to a single space.
  997.      * Compact substring notation: \s(somestring[12:18]) is the same as
  998.        \fsubstring(\m(somestring),12,18), i.e. the substring starting at
  999.        position 12, 18 characters long. \s(somestring[12_18]) means
  1000.        characters 12 through 18 of the string (7 characters). Also,
  1001.        \s(somestring[17.]) returns character number 17 of somestring.
  1002.      * The string indexing functions now accept an optional trailing
  1003.        argument specifying the occurrence number of the target string.
  1004.        Likewise, \fword() can fetch words from the right as well as the
  1005.        left.
  1006.      * The COPY command in Unix C-Kermit has a new /PRESERVE switch,
  1007.        equivalent to Unix "cp -p".
  1008.      * ASKQ /ECHO:c can be used to make the characters the user types echo
  1009.        as the character c, e.g. asterisk when typing a password.
  1010.      * IF LINK filename to test if the filename is a symlink.
  1011.      * Ctrl-K, when typed at the command parser, replaces itself with most
  1012.        recently entered file specification.
  1013.      * In Unix, the ability to log a terminal session to a serial port,
  1014.        for use with speaking devices or serial printers; described
  1015.        [77]HERE. Also for the same purpose, SET SESSION-LOG
  1016.        NULL-PADDED-LINES for a speech synthesizer than needed this.
  1017.      * Adaptation to OpenSSL 0.9.8 and 1.0.0.
  1018.      * Lifted the restriction on having a remote Kermit program send
  1019.        REMOTE commands to the local. A very big ex-client needed to be
  1020.        able to do this (branches would connect to headquarters and upload
  1021.        files; HQ would then download patches, a REMOTE HOST command was
  1022.        necessary to allow the remote headquarters machines to install the
  1023.        patches on the local client; of course the client first has to
  1024.        ENABLE HOST because this is a risky scenario). The reason for the
  1025.        restriction was that the server, upon receiving any REMOTE command
  1026.        would send the results (output) back to the client as a file
  1027.        transfer with "destination screen", but of course the remote has no
  1028.        screen.
  1029.      * Added XMESSAGE, which is to [78]MESSAGE as XECHO is ECHO: it
  1030.        outputs a string with no line terminator DEBUG MESSAGE is ON.
  1031.      * Fixed \frecurse() to not dump core when invoked with no arguments.
  1032.      * Improved text for HELP FUNCTION SPLIT and HELP FUNCTION WORD.
  1033.      * Patches for Debian 6.0 "Squeeze" from Ian Beckwith.
  1034.      * \fcontents(\&a[3]) got an error if the array was declared but its
  1035.        dimension was less than 3. Now it simply returns and empty string.
  1036.      * \fsplit(), when parsing lines from CSV and TSV files, was treating
  1037.        backslash in the data the same way it treats backslash in Kermit
  1038.        commands. This was fixed to treat backslash like any other
  1039.        character.
  1040.      * Builds for Solaris 9 and later now use streams ptys rather then the
  1041.        old BSD-style ptys. Thanks to Gary Mills for this one, who noticed
  1042.        that he couldn't have more than 48 C-Kermit SSH sessions going at
  1043.        once and figured out why.
  1044.      * As noted [79]below DES encryption is being retired from many
  1045.        platforms and libraries that once used it. I changed the Solaris
  1046.        and Linux OpenSSL builds to account for this by testing for it. I
  1047.        probably should also add a OMITDES option to omit DES even if it is
  1048.        installed, but "KFLAGS=-UCK_DES" seems to do the job for now.
  1049.      * I changed the Linux build to test for the OpenSSL version (like the
  1050.        Solaris version already did), rather than assuming OpenSSL 0.9.7.
  1051.      * A couple minor changes for Tru64 Unix 5.1B from Steven Schweda but
  1052.        we still have some trouble on that platform. As a workaround "make
  1053.        osf1" can be used there.
  1054.      * Unix makefile and man page are now included in the Zip
  1055.        distribution.
  1056.      * \fjoin(), which is the inverse function of fsplit() now accepts CSV
  1057.        and TSV as a second argument, to transform an array into a
  1058.        comma-separated or tab-separated value list, as described [80]HERE.
  1059.      * Even in 2010, Unix distributions continue to change their UUCP
  1060.        lockfile conventions. C-Kermit 9.0 contains support from Joop
  1061.        Boonen for OpenSuSE >= 11.3 and recent Debian, which no longer have
  1062.        baudboy.h, which first appeared in Red Hat 7.2 in 2003.
  1063.      * From Lewis McCarthy:
  1064.  
  1065.      Based on code inspection, C-Kermit appears to have an SSL-related
  1066.      security vulnerability analogous to that identified as CVE-2009-3767
  1067.      (see e.g.
  1068.      [81]http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3767).
  1069.  
  1070.      I'm attaching a patch for this issue relative to the revision of
  1071.      ck_ssl.c obtained from a copy of
  1072.      [82]http://www.columbia.edu/kermit/ftp/test/tar/x.zip downloaded on
  1073.      2010/07/30, which I believe is the latest.
  1074.      When this flaw was first widely publicized at last year's Black Hat
  1075.      conference, it was claimed that some public certificate authorities
  1076.      had indeed issued certificates that could be used to exploit this
  1077.      class of vulnerability. As far as I know they have not revealed
  1078.      specifically which public CA(s) had been found issuing such
  1079.      certificates. Some references:
  1080.           + [83]http://www.mseclab.com/?p=180
  1081.           + [84]http://www.theregister.co.uk/2009/07/30/universal_ssl_cert
  1082.             ificate/
  1083.  
  1084.      * Peter Eichhorn reported that "RENAME ../x ." didn't work; fixed
  1085.        now.
  1086.      * If only one file is FOPEN'd, FCLOSE given with no arguments would
  1087.        close it; this was a "convenience feature" that turned out to be
  1088.        dangerous. For safety FCLOSE has to require a specific channel
  1089.        number or the word ALL.
  1090.      * Added \fstrcmp(s1,s2,case,start,length), which has the advantage
  1091.        over IF EQU,LGT,LLT that case sensitivity can be specified as a
  1092.        function arg, and also substrings can be specified.
  1093.      * New built-in functions:
  1094.  
  1095.         \fcvtcsets(string,cs1,cs2)
  1096.                 Function to convert a string from one character set to
  1097.                 another.
  1098.  
  1099.         \fdecodehex(string[,prefix])
  1100.                 Function to decode a string containing hex escapes.
  1101.  
  1102.         \fstringtype(string)
  1103.                 Function to tell whether a string is 7-bit, 8-bit, or
  1104.                 UTF-8.
  1105.  
  1106.        For the motivation for these features and an application that uses
  1107.        them to analyze web logs, see the Weblog script below.
  1108.      *
  1109.  
  1110.         Lazy IF Conditions: Now you can do this:
  1111.                 define foo some number
  1112.                 if foo command
  1113.  
  1114.         instead of this:
  1115.                 define foo some number
  1116.                 if \m(foo) command
  1117.  
  1118.        Of course the old way still works too. But watch out because if the
  1119.        variable name is the same as a symbolic IF condition (for example
  1120.        COUNT), it won't do what you expected. (IF COUNT was used for loop
  1121.        control in early versions of MS-DOS Kermit, before it got real FOR
  1122.        and WHILE loops; it was added to C-Kermit for compatibility, and it
  1123.        can't be removed because that could break existing scripts).
  1124.      * Escape sequences are now stripped from text-mode session logs not
  1125.        only in CONNECT sessions but also in whatever is logged by the
  1126.        INPUT command; described in the [85]next section.
  1127.      * New commands for selectively issuing progress or debugging messages
  1128.        from scripts, also described in the next section.
  1129.      * Fix from [86]John Dunlap to prevent the fixed packet-timeout
  1130.        interval from going to an unexpected value.
  1131.      * Alpha.04 fixes a problem with FTP connections made from 64-bit Unix
  1132.        platforms. All the other changes in this section were to Alpha.03.
  1133.      * Relaunching a closed SSH connection with the CONNECT command is now
  1134.        possible, as it always has been with Telnet and other connection
  1135.        types; suggested by Peter Eichhorn (needs testing).
  1136.      * A symbol conflict fixed that prevented successful build on
  1137.        [87]FreeBSD 8.0.
  1138.      * Fixes from Christian Corti for building on SunOS 4.1.
  1139.      * New aixg target for building on AIX with gcc.
  1140.      * New aix+ibmssl target. This is nice because the IBM-supplied SSL
  1141.        libraries and header files are in a known location; no need to
  1142.        [88]set environment variables giving their locations.
  1143.      * "Large File Support" is now included by default on Alpha and IA64
  1144.        hardware on VMS 7.3 and later, and it should work much better than
  1145.        before.
  1146.      * Kermit's internal FTP client is now included by default in any
  1147.        build that also includes TCP/IP networking. At present, the FTP
  1148.        client seems to work well for binary-mode transfers; text (ASCII)
  1149.        mode transfers still need some work. In builds that also include
  1150.        Secure Sockets Layer (SSL) security (next item) the FTP client
  1151.        should be able to make securely authenticated and encrypted
  1152.        connections.
  1153.      * In network builds that request OpenSSL support, e.g.:
  1154.  
  1155.      $ @ckvker  ""  ""  "CK_SSL"
  1156.        the OpenSSL version is detected automatically and the appropriate
  1157.        compile-time options are emitted (such as
  1158.        OPENSSL_DISABLE_OLD_DES_SUPPORT).
  1159.      * Preliminary / limited support for the ODS-5 file system on VMS 7.2
  1160.        and later, Alpha and Itanium only (needs testing): Filenames can be
  1161.        mixed case and can be longer.
  1162.      * Support for older and older VMS versions.
  1163.      * In the VMS build procedure, CKVKER.COM, the "i" option in P1 now
  1164.        means don't include the internal FTP client, and the "f" option
  1165.        means do not include "Large File" support. Large File support in
  1166.        VMS really only applies to the file-transfer display and
  1167.        statistics, which would go out of whack as soon as the byte count
  1168.        overflowed 31 bits because this is C-Kermit, built with the C
  1169.        compiler and the C library (runtime system), which did not support
  1170.        long integers until VMS 7.3.
  1171.      * The [89]LISP Operator ROUND now takes an optional second argument
  1172.        that specifies the number of places to round to, e.g.
  1173.        (ROUND dollars 2) rounds dollars to 2 decimal places.
  1174.      * Improved pattern matching in many commands for both strings and
  1175.        filenames.
  1176.      * Various minor new features, plus numerous bug fixes and speedups.
  1177.  
  1178. Incompatibilities
  1179.  
  1180.    A top priority for new Kermit software releases has always been
  1181.    backwards compatibility. A script written for a previous Kermit release
  1182.    should run the same way in the new release.
  1183.  
  1184.    There's one exception this time. The [90]\fsplit() function is
  1185.    incredibly handy, it can do almost anything, up to and including
  1186.    parsing a LISP program (the underlying code is the basis of the
  1187.    [91]S-Expression interpreter). But did you ever try to use it to parse
  1188.    (say) a Tab-Separated-List (TSV file) or Comma-Separated-List (CSV)? It
  1189.    works as expected as long as the data contains only 7-bit characters.
  1190.    But if your data contains (say) Spanish or German or Russian text
  1191.    written in an 8-bit character set such as ISO 8859-1, every 8-bit
  1192.    character (any value 128-255) is treated as a break character. This is
  1193.    fixed in C-Kermit 9.0 by treating all 8-bit bytes as "include"
  1194.    characters rather than break characters, a total reversal of past
  1195.    behavior. I don't think it will affect anyone though, because if this
  1196.    had happened to anyone, I would have heard about it!
  1197.  
  1198.    Since most standard 8-bit character sets have control characters in
  1199.    positions 128-160, it might have made sense to keep 128-160 in the
  1200.    break set, but with the proliferation of Microsoft Windows code pages,
  1201.    there is no telling which 8-bit character is likely to be some kind of
  1202.    text, e.g. "smart quotes" or East European or Turkish accented letters.
  1203.  
  1204. What's Not In C-Kermit 9.0
  1205.  
  1206.    Some large projects that were contemplated have not been done,
  1207.    including:
  1208.      * IPv6. Honestly, there has been zero demand for this, and it would
  1209.        be a lot of work and disruption to the code base. Volunteers
  1210.        welcome, I guess. It could be a CS project.
  1211.      * A database interface - MySQL or ODBC. For this one, there is some
  1212.        demand but I haven't had a chance to even look into it.
  1213.      * There's a looming issue with DES encryption; major vendors are
  1214.        removing it from their platforms, starting with Apple in Mac OS X
  1215.        10.6, with Microsoft to follow suit. A secure version of Kermit can
  1216.        be built without DES, but in limited testing successful connections
  1217.        were spotty (e.g. with Kerberos 5).
  1218.      * Cleaning up the Unix makefile. It has 25 years' worth of targets in
  1219.        it. It is very likely safe to remove most of them, since (a) most
  1220.        old platforms have gone away by now, or have been upgraded, due to
  1221.        hacking vulnerabilities; (b) the market has consolidated
  1222.        considerably; and (c) most of the new features of C-Kermit 9.0,
  1223.        such as large files, won't be of any use on older platforms and
  1224.        previous C-Kermit versions will remain available.
  1225.      * Packages. Everybody wants an install package custom made for their
  1226.        own computer, Linux RPMs being the prime example but far from the
  1227.        only one. These will come, I suppose (especially with some Linux
  1228.        sites having a policy against installing any application that does
  1229.        not come as an RPM). In the meantime, here's a page that describes
  1230.        some Kermit-specific issues in package construction:
  1231.        [92]ckpackages.html.
  1232.  
  1233. And a Loose End...
  1234. Using External File-Transfer Protocols on Secure Connections
  1235.  
  1236.    After C-Kermit 8.0.212 Dev.27 (2006/12/22), I spent a big chunk of time
  1237.    trying to solve a particular problem that some of you have complained
  1238.    about and others might be familiar with: If you use C-Kermit to make a
  1239.    secure Telnet connection to another host (e.g. with Telnet SSL/TLS,
  1240.    Kerberos, or SRP) and then attempt to transfer a file using an external
  1241.    protocol such as Zmodem, it doesn't work.
  1242.  
  1243.    That's because as coded (through 8.0.211), C-Kermit simply starts the
  1244.    external protocol in a fork with its standard i/o redirected to the
  1245.    connection. This completely bypasses the encryption and decryption that
  1246.    is done by C-Kermit itself, and of course it doesn't work. The same
  1247.    thing occurs if you use the REDIRECT command. The routine that handles
  1248.    this is ttruncmd() in ckutio.c.
  1249.  
  1250.    In order to allow (say) Zmodem transfers on secure connections, it is
  1251.    necessary for C-Kermit to interpose itself between the external Zmodem
  1252.    program and the connection, decrypting the incoming stream before
  1253.    feeding it to Zmodem and encrypting Zmodem's output before sending out
  1254.    the connection.
  1255.  
  1256.    In principal, this is simple enough. We open a pseudoterminal pair
  1257.    ("master" and "slave") for Zmodem's i/o and we create a fork and start
  1258.    Zmodem in it; we read from the fork pty's standard output, encrypt, and
  1259.    send to the net; we read from the net, decrypt, and write to the fork
  1260.    pty's standard input.
  1261.  
  1262.    In practice, it's not so simple. First of all, pseudoterminals (ptys)
  1263.    don't seem to interface correctly with certain crucial APIs, at least
  1264.    not in the OS's I have tried (Mac OS X, Linux, NetBSD, etc), such as
  1265.    select(). And i/o with the pty often - perhaps always - fails to
  1266.    indicate errors when they occur; for example, when the fork has exited.
  1267.  
  1268.    But, even after coding around the apparent uselessness of select() for
  1269.    multiplexing pty and net, and using various tricks to detect when the
  1270.    external protocol exits and what its exit status is, I'm still left
  1271.    with a show-stopping problem: I just simply can not download (receive)
  1272.    a file with Zmodem, which is the main thing that people would probably
  1273.    want to do. I can send files just fine, but not receive. The incoming
  1274.    stream is delivered to Zmodem (to the pty slave) but upon arrival at
  1275.    the Zmodem process itself, pieces are always missing and/or corrupt.
  1276.    Yet I can receive files just fine if I use Kermit itself (C-Kermit or
  1277.    G-Kermit) as the external protocol, rather than Zmodem.
  1278.  
  1279.    I can think of two reasons why this might be the case:
  1280.  
  1281.     1. Zmodem sends all 8-bit bytes and control codes in the clear, and
  1282.        maybe the pty is choking on them because it thinks it is a real
  1283.        terminal.
  1284.  
  1285.    But Zmodem puts its controlling terminal into raw mode. And C-Kermit
  1286.    puts the pty into raw mode too, just for good measure. If any 0xFF
  1287.    codes are in the Zmodem data stream, and it's a Telnet session, Kermit
  1288.    does any needed byte stuffing/unstuffing automatically. Anyway, if I
  1289.    tell Zmodem to prefix everything, it makes no difference.
  1290.  
  1291.     2. Zmodem is a streaming protocol and perhaps the pty driver can't
  1292.        keep up with a sustained stream of input at network speeds. What
  1293.        would be the method of flow control?
  1294.  
  1295.    I can vary the size of the i/o buffers used for writing to the pty, and
  1296.    get different effects, but I am not able to get a clean download, no
  1297.    matter what buffer size I use. write()'ing to the pty does not return
  1298.    an error, and I can't see the errors because they happen on the master
  1299.    side. It's as if the path between the pty slave and master lacks flow
  1300.    control; I deliver a valid data stream to the pty slave and the master
  1301.    gets bits and pieces. This impression is bolstered somewhat by the
  1302.    "[93]man 7 pty" page in HP-UX, which talks about some special modes for
  1303.    ptys that turn off all termio processing and guarantee a
  1304.    flow-controlled reliable stream of bytes in both directions - a feature
  1305.    that seems to be specific to HP-UX, and exactly the one we need
  1306.    everywhere.
  1307.  
  1308.    Well, in Pass One I used C-Kermit's existing pty routines from
  1309.    ckupty.[ch], which are well-proven in terms of portability and of
  1310.    actually working. They are currently used by SET HOST /PTY for making
  1311.    terminal connections to external processes. But these routines are
  1312.    written on the assumption that the pty is to be accessed interactively,
  1313.    and maybe they are setting the fork/pty arrangement up in such a way
  1314.    that that's not suitable for file transfer. The Pass One routine is
  1315.    called xttptycmd() in ckutio.c.
  1316.  
  1317.    So in Pass Two I made a second copy of the routine, yttptycmd(), that
  1318.    manages the pty and fork itself, so all the code is in one place and
  1319.    it's simple and understandable. But it still doesn't work for Zmodem
  1320.    downloads. In this routine, I use openpty() to get the pty pair, which
  1321.    is not portable, so I can have access to both the master and slave pty
  1322.    file descriptors. This version can be used only a platforms that have
  1323.    openpty(): Linux, Mac OS X, NetBSD, etc.
  1324.  
  1325.    In Pass Three, zttptycmd(), I tried using pipes instead of ptys, in
  1326.    case ptys are simply not up to this task (but that can't be true
  1327.    because if I make a Telnet or SSH connection into a host, I can send
  1328.    files to it with Zmodem, and the remote Zmodem receiver is, indeed,
  1329.    running on a pty). But pipes didn't work either.
  1330.  
  1331.    In Pass Four, I extracted the relevant routines into a standalone
  1332.    program based on yttptycmd() (the openpty() version, for simplicity),
  1333.    which I tested on Mac OS X, the idea being to rule out any
  1334.    "environmental" effects of running inside the C-Kermit process. There
  1335.    was no difference -- Kermit transfers (with C-Kermit itself as the
  1336.    external protocol) worked; Zmodem transfers (neither sz or lsz) did
  1337.    not.
  1338.  
  1339.    Well, it's a much longer story. As the external protocol, I've tried
  1340.    rzsz, crzsz, and lrzsz. We know that some of these have quirks
  1341.    regarding standard i/o, etc, which is one of the reasons for using ptys
  1342.    in the first place, and i/o does work - just not reliably. Anyway, the
  1343.    1100 lines or so of [94]ckc299.txt, starting just below where it says
  1344.    "--- Dev.27 ---" tell the full story. At this point I have to give up
  1345.    and move on; it might be more productive to let somebody else who has
  1346.    more experience with ptys take a look at it - if indeed anyone still
  1347.    cares about being able to do Zmodem transfers over secure Telnet
  1348.    connections.
  1349.  
  1350.    C-Kermit 9.0 contains the three new routines (and some auxiliary ones),
  1351.    but they are not compiled or called unless you build it specially:
  1352.  
  1353.      make targetname KFLAGS=-DXTTPTYCMD (builds with xttptycmd())
  1354.      make targetname KFLAGS=-DYTTPTYCMD (builds with yttptycmd())
  1355.      make targetname KFLAGS=-DZTTPTYCMD (builds with zttptycmd())
  1356.  
  1357.    These are all in [95]ckutio.c. As noted, the second one works only for
  1358.    Linux, FreeBSD, NetBSD, and Mac OS X, because it uses non-POSIX,
  1359.    non-portable openpty(). If you want to try it on some other platform
  1360.    that has openpty(), you can build it like this:
  1361.  
  1362.      make targetname "KFLAGS=-DYTTPTYCMD -DHAVE_OPENPTY"
  1363.  
  1364.    (and let me know, so I can have HAVE_OPENPTY predefined for that
  1365.    platform too). The best strategy to get this working, I think, would be
  1366.    to concentrate on yttptycmd(), which is the simpler of the two
  1367.    pty-based routines. If it can be made to work, then we'll see if we can
  1368.    retrofit it to use the ckupty.c routines so it will be portable to
  1369.    non-BSD platforms.
  1370.  
  1371.    By the way, if you build with any of [XYZ]TTPTYCMD defined, then the
  1372.    selected routine will always be used in place of ttruncmd(). This is to
  1373.    allow testing on all kinds of connections, not just secure ones, in
  1374.    both local and remote mode. Once the thing works, if it ever does, I'll
  1375.    add the appropriate tests and/or commands.
  1376.  
  1377.    By default, in the initial test release, C-Kermit 9.0 uses ttruncmd()
  1378.    on serial connections and ttyptycmd() on network connections. Even when
  1379.    a network connection is not encrypted, Kermit still needs to handle the
  1380.    network protocol, e.g. the quoting of 0xff bytes on Telnet connections.
  1381.  
  1382. Demonstration: Fetch Mail from POP Server Secured by SSL
  1383.  
  1384.    [96]pop.ksc is a fully elaborated production script for fetching one's
  1385.    mail from a POP3 server over a connection secured by SSL. For
  1386.    explanation and documentation, [97]CLICK HERE. [98]mailcheck is a
  1387.    wrapper for the pop.ksc script, which collects your password one time,
  1388.    and then checks for new mail every 5 minutes (or other selected
  1389.    interval) and calls pop.ksc to fetch it if there is any.
  1390.  
  1391. Demonstration: HP Switch Configuration Backup
  1392.  
  1393.    A common use for Kermit software is to make automated backups of the
  1394.    configuration of network switches and routers, such as those made by
  1395.    Cisco or Hewlett-Packard (although [99]tftp can be used for this, it is
  1396.    not available in all such devices; Kermit, however, works with those
  1397.    that have tftp as well as those that don't).
  1398.  
  1399.    Typically a backup can be done by making a Telnet, SSH, or serial
  1400.    connection to the device with Kermit and giving a command such as "show
  1401.    config" at the command-line prompt of the device with Kermit's session
  1402.    log activated. The result is a list of the commands that were used to
  1403.    establish the current configuration, suitable for feeding back to the
  1404.    device's console (e.g. with C-Kermit's TRANSMIT command) to reestablish
  1405.    the same configuration or to duplicate it on another device.
  1406.  
  1407.    At an HP installation it was noted, however, that while the HP switches
  1408.    (various ProCurve models) produced the desired list of commands, they
  1409.    were interspersed with escape sequences for special effects, thus
  1410.    rendering the recorded sessions unsuitable for feeding back into the
  1411.    switches.
  1412.  
  1413.    C-Kermit 9.0 introduces a new feature to strip the offending sequences
  1414.    out of a session log, leaving just the text. The command SET
  1415.    SESSION-LOG TEXT activates this feature. In C-Kermit 9.0 Alpha.02 and
  1416.    earlier, escape sequence stripping occurred only while logging
  1417.    interactive (CONNECT) sessions; beginning with Alpha.03 it is done also
  1418.    for data that is read by INPUT commands and therefore works for scripts
  1419.    too.
  1420.  
  1421.    A sample HP Switch Configuration Backup script is [100]HERE, and its
  1422.    data file is [101]HERE. This script also illustrates some other new
  1423.    features of Alpha.03:
  1424.  
  1425.    MESSAGE text
  1426.           This lets you put debugging messages in your script that can be
  1427.           displayed or not, according to SET DEBUG MESSAGE (below). This
  1428.           way you don't have to change your script for debugging.  Hint:
  1429.           In Unix, invoke the script like this:
  1430.  
  1431.      $ DEBUG=1 scriptname arg1 arg2...
  1432.  
  1433.           and then include the following command in your script:
  1434.  
  1435.      if defined \$(DEBUG) set debug message on
  1436.  
  1437.    XMESSAGE text
  1438.           Like MESSAGE but prints the text with no line terminator, so it
  1439.           can be continued by subsequent messages.
  1440.  
  1441.    SET DEBUG MESSAGE { ON, OFF, STDERR }
  1442.           ON means MESSAGE commands should print to standard output; OFF
  1443.           means they shouldn't print anything; STDERR means the messages
  1444.           should be printed to [102]stderr. DEBUG MESSAGE is OFF by
  1445.           default, i.e. unless you SET it to ON or STDERR.
  1446.  
  1447.    IF DEBUG command
  1448.           Executes the command if SET DEBUG MESSAGE is not OFF.
  1449.  
  1450.    The \v(lastcommand) variable
  1451.           This variable contains the previous command. You can use it in
  1452.           debugging and error message to show (for example) exactly what
  1453.           the command was that just failed, without having to make a copy
  1454.           of the command:
  1455.  
  1456. set host somehost.somecompany.com
  1457. if fail exit 1 "FATAL - \v(lastcommand)"
  1458.  
  1459.           which, if the SET HOST command fails, prints "FATAL - set host
  1460.           somehost.somecompany.com" and then exits with status 1 (which
  1461.           normally indicates failure).
  1462.  
  1463. Demonstration: HP iLO Blade Configuration
  1464.  
  1465.    [103]THIS DOCUMENT describes a script in production use at Columbia
  1466.    University for configuring and deploying racks full of HP blade servers
  1467.    through their "integrated Lights Out" (iLO) management interface,
  1468.    bypassing the tedious and error-prone process of configuring the
  1469.    servers one by one through the vendor-provided point-and-click Web
  1470.    interface, which is ill-suited to configuring large numbers of blades.
  1471.    The script illustrates some of C-Kermit 9.0's new features; source code
  1472.    is available through the link. The code is apt to change from time to
  1473.    time as new requirements surface.
  1474.  
  1475. Demonstration: IBM/Rolm/Siemens CBX Management
  1476.  
  1477.    [104]THIS DOCUMENT describes a suite of scripts (some in production,
  1478.    some in development) used to manage the Columbia campus 20,000-line
  1479.    main telephone switch, along with about 10 satellite switches at
  1480.    off-campus locations. These switches are 1980s technology*, their
  1481.    management consoles are serial ports. Access is via Telnet to reverse
  1482.    terminal servers. The scripts allow for interactive sessions as well as
  1483.    automatic production (and in some cases formatting) of different
  1484.    reports required by different groups at different intervals. These
  1485.    scripts replace a whole assortment of ad-hoc ProComm ASPECT scripts
  1486.    that were scattered all over the place, with passwords embedded. The
  1487.    new scripts are intended to be run from a centralized server where
  1488.    there is a single well-secured configuration file, and where they can
  1489.    be used on demand, or in cron jobs. They are modular so code
  1490.    duplication is minimal.
  1491.    __________________________
  1492.    *  Of course the University is deploying new technology but the but the
  1493.    old system will be used in parallel for some time to come.
  1494.  
  1495. Demonstration: CSV and TSV Files
  1496.  
  1497.    Contents
  1498.  
  1499.      * [105]Reading a CSV or TSV Record and Converting it to an Array
  1500.      * [106]Using \fjoin() to create a Comma- or Tab-Separated Value List
  1501.        from an Array
  1502.      * [107]Using CSV or TSV Files
  1503.  
  1504.    Comma-Separated Value (CSV) format is commonly output by spreadsheets
  1505.    and databases when exporting data into plain-text files for import into
  1506.    other applications. Here are the details:
  1507.  
  1508.    Comma-Separated List Syntax
  1509.  
  1510.     1. Each record is a series of fields.
  1511.     2. Records are in whatever format is used by the underlying file
  1512.        system for lines of text.
  1513.     3. Fields within records are separated by commas, with zero or more
  1514.        whitespace characters (space or tab) before and/or after the comma;
  1515.        such whitespace is considered part of the separator.
  1516.     4. Fields with embedded commas must be enclosed in ASCII doublequote
  1517.        characters.
  1518.     5. Fields with leading or trailing spaces must be enclosed in ASCII
  1519.        doublequotes.
  1520.     6. Any field may be enclosed in ASCII doublequotes.
  1521.     7. Fields with embedded doublequotes must be enclosed in doublequotes
  1522.        and each interior doublequote is doubled.
  1523.  
  1524.    Here is an example:
  1525.  
  1526. aaa, bbb, has spaces,,"ddd,eee,fff", " has spaces ","Muhammad ""The Greatest"" A
  1527. li"
  1528.  
  1529.    The first two are regular fields. The second is a field that has an
  1530.    embedded space but in which any leading or trailing spaces are to be
  1531.    ignored. The fourth is an empty field, but still a field. The fifth is
  1532.    a field that contains embedded commas. The sixth has leading and
  1533.    trailing spaces. The last field has embedded quotation marks.
  1534.  
  1535.    Prior to C-Kermit 9.0 Alpha.06, C-Kermit did not handle CSV files
  1536.    according to the specification above. Most seriously, there was no
  1537.    provision for a separator to be surrounded by whitespace that was to be
  1538.    considered part of the separator. Also there was no provision for
  1539.    quoting doublequotes inside of a quoted string.
  1540.  
  1541. Reading a CSV record
  1542.  
  1543.    Now the \fsplit() function can handle any CSV-format string if you
  1544.    include the symbolic include set "CSV" as the 4th parameter. To
  1545.    illustrate, this program:
  1546.  
  1547. def xx {
  1548.    echo [\fcontents(\%1)]
  1549.    .\%9 := \fsplit(\fcontents(\%1), &a, \44, CSV)
  1550.    for \%i 1 \%9 1 { echo "\flpad(\%i,3). [\&a[\%i]]" }
  1551.    echo "-----------"
  1552. }
  1553. xx {a,b,c}
  1554. xx { a , b , c }
  1555. xx { aaa,,ccc," with spaces ",zzz }
  1556. xx { "1","2","3","","5" }
  1557. xx { this is a single field }
  1558. xx { this is one field, " and this is another  " }
  1559. xx { name,"Mohammad ""The Greatest"" Ali", age, 67 }
  1560. xx { """field enclosed in doublequotes""" }
  1561. exit
  1562.  
  1563.    gives the following results:
  1564.  
  1565. [a,b,c]
  1566.   1. [a]
  1567.   2. [b]
  1568.   3. [c]
  1569. -----------
  1570. [ a , b , c ]
  1571.   1. [a]
  1572.   2. [b]
  1573.   3. [c]
  1574. -----------
  1575. [ aaa,,ccc," with spaces ",zzz ]
  1576.   1. [aaa]
  1577.   2. []
  1578.   3. [ccc]
  1579.   4. [ with spaces ]
  1580.   5. [zzz]
  1581. -----------
  1582. [ "1","2","3","","5" ]
  1583.   1. [1]
  1584.   2. [2]
  1585.   3. [3]
  1586.   4. []
  1587.   5. [5]
  1588. -----------
  1589. [ this is a single field ]
  1590.   1. [this is a single field]
  1591. -----------
  1592. [ this is one field, " and this is another  " ]
  1593.   1. [this is one field]
  1594.   2. [ and this is another  ]
  1595. -----------
  1596. [ name,"Mohammad ""The Greatest"" Ali", age, 67 ]
  1597.   1. [name]
  1598.   2. [Mohammad "The Greatest" Ali]
  1599.   3. [age]
  1600.   4. [67]
  1601. -----------
  1602. [ """field enclosed in doublequotes""" ]
  1603.   1. ["field enclosed in doublequotes"]
  1604. -----------
  1605.  
  1606.    The separator \44 (comma) must still be specified as the break set (3rd
  1607.    \fsplit() parameter). When "CSV" is specified as the include set:
  1608.      * The Grouping Mask is automatically set to 1 (which specifies that
  1609.        the ASCII doublequote character (") is used for grouping;
  1610.      * The Separator Flag is automatically set to 1 so that adjacent field
  1611.        separators will not be collapsed;
  1612.      * All bytes (values 0 through 255) other than the break character are
  1613.        added to the include set;
  1614.      * Any leading whitespace is stripped from the first element unless it
  1615.        is enclosed in doublequotes;
  1616.      * Any trailing whitespace is trimmed from the end of the last element
  1617.        unless it is enclosed in doublequotes;
  1618.      * If the separator character has any spaces or tabs preceding it or
  1619.        following it, they are ignored and discarded;
  1620.      * The separator character is treated as an ordinary data character if
  1621.        it appears in a quoted field;
  1622.      * A sequence of two doublequote characters ("") within a quoted field
  1623.        is converted to a single doublequote.
  1624.  
  1625.    There is also a new TSV symbolic include set, which is like CSV except
  1626.    without the quoting rules or the stripping of whitespace around the
  1627.    separator because, by definition, TSV fields do not contain tabs.
  1628.  
  1629.    Of course you can specify any separator(s) you want with either the
  1630.    CSV, TSV, or ALL symbolic include sets. For example, if you have a TSV
  1631.    file in which you want the spaces around each Tab to be discarded, you
  1632.    can use:
  1633.  
  1634. \fsplit(variable, &a, \9, CSV)
  1635.  
  1636.    \9 is Tab.
  1637.  
  1638.    The new symbolic include sets can also be used with \fword(), which is
  1639.    just like \fsplit() except that it retrieves the nth word from the
  1640.    argument string, rather than an array of all the words. In C-Kermit you
  1641.    can get information about these or any other functions with the HELP
  1642.    FUNCTION command, e.g.:
  1643.  
  1644. C-Kermit> help func word
  1645.  
  1646. Function \fword(s1,n1,s2,s3,n2,n3) - Extracts a word from a string.
  1647.     s1 = source string.
  1648.     n1 = word number (1-based) counting from left; if negative, from right.
  1649.     s2 = optional break set.
  1650.     s3 = optional include set (or ALL, CSV, or TSV).
  1651.     n2 = optional grouping mask.
  1652.     n3 = optional separator flag:
  1653.        0 = collapse adjacent separators;
  1654.        1 = don't collapse adjacent separators.
  1655.  
  1656.   \fword() returns the n1th "word" of the string s1, according to the
  1657.   criteria specified by the other parameters.
  1658.  
  1659.   The BREAK SET is the set of all characters that separate words. The
  1660.   default break set is all characters except ASCII letters and digits.
  1661.   ASCII (C0) control characters are treated as break characters by default,
  1662.   as are spacing and punctuation characters, brackets, and so on, and
  1663.   all 8-bit characters.
  1664.  
  1665.   The INCLUDE SET is the set of characters that are to be treated as
  1666.   parts of words even though they normally would be separators.  The
  1667.   default include set is empty.  Three special symbolic include sets are
  1668.   also allowed:
  1669.  
  1670.     ALL (meaning include all bytes that are not in the break set)
  1671.     CSV (special treatment for Comma-Separated-Value records)
  1672.     TSV (special treatment for Tab-Separated-Value records)
  1673.  
  1674.   For operating on 8-bit character sets, the include set should be ALL.
  1675.  
  1676.   If the GROUPING MASK is given and is nonzero, words can be grouped by
  1677.   quotes or brackets selected by the sum of the following:
  1678.  
  1679.      1 = doublequotes:    "a b c"
  1680.      2 = braces:          {a b c}
  1681.      4 = apostrophes:     'a b c'
  1682.      8 = parentheses:     (a b c)
  1683.     16 = square brackets: [a b c]
  1684.     32 = angle brackets:  <a b c>
  1685.  
  1686.   Nesting is possible with {}()[]<> but not with quotes or apostrophes.
  1687.  
  1688. Returns string:
  1689.   Word number n1, if there is one, otherwise an empty string.
  1690.  
  1691. Also see:
  1692.   HELP FUNCTION SPLIT
  1693.  
  1694. C-Kermit>
  1695.  
  1696. Using \fjoin() to create Comma- or Tab-Separated Value Lists from Arrays
  1697.  
  1698.    In C-Kermit 9.0, \fsplit()'s inverse function, [108]\fjoin() received
  1699.    the capability of converting an array into a comma-separated or a
  1700.    tab-separated value list. Thus, given a CSV, if you split it into an
  1701.    array with \fsplit() and then join the array with \fjoin(), giving each
  1702.    function the new CSV parameter in the appropriate argument position,
  1703.    the result will be will be equivalent to the original, according to the
  1704.    CSV definition. It might not be identical, because if the result had
  1705.    extraneous spaces before or after the separating commas, these are
  1706.    discarded, but that does not affect the elements themselves. The new
  1707.    syntax for \fjoin() is:
  1708.  
  1709.    \fjoin(&a,CSV)
  1710.           Given the array \&a[] or any other valid array designator, joins
  1711.           its elements into a comma-separated list according to the
  1712.           [109]rules listed above.
  1713.  
  1714.    \fjoin(&a,TSV)
  1715.           Joins the elements of the given array into a tab-separated list,
  1716.           also described above.
  1717.  
  1718.    [110]Previous calling conventions for \fjoin() are undisturbed,
  1719.    including the ability to specify a portion of an array, rather than the
  1720.    whole array:
  1721.  
  1722. declare \&a[] = 1 2 3 4 5 6 7 8 9
  1723. echo \fjoin(&a[3:7],CSV)
  1724. 3,4,5,6,7
  1725.  
  1726.    Using \fsplit() and \fjoin() it is now possible to convert a
  1727.    comma-separated value list into a tab-separated value list, and vice
  1728.    versa (which is not a simple matter of changing commas to tabs or vice
  1729.    versa).
  1730.  
  1731. Applications for CSV Files
  1732.  
  1733.    Databases such as MS Access or MySQL can export tables or reports in
  1734.    CSV format, and then Kermit can read the resulting CSV file and do
  1735.    whatever you like with it; typically something that could not be done
  1736.    with the database query language itself (or that you didn't know how to
  1737.    do that way): create reports or datasets based on complex criteria or
  1738.    procedures, edit or modify some fields, etc, and then use \fjoin() to
  1739.    put each record back in CSV form so it can be reimported into a
  1740.    spreadsheet or database.
  1741.  
  1742.    Here is a simple example in which we purge all records of customers who
  1743.    have two or more unpaid bills. The file is sorted so that each license
  1744.    purchase record is followed by its annual maintenance payment records
  1745.    in chronological order.
  1746.  
  1747. #!/usr/local/bin/kermit
  1748. .filename = somefile.csv        # Input file in CSV format
  1749. fopen /read \%c \m(filename)    # Open it
  1750. if fail exit                    # Don't go on if open failed
  1751. copy \m(filename) ./new         # Make a copy of the file
  1752.  
  1753. .oldserial = 00000000000        # Multiple records for each serial number
  1754. .zeros = 0                      # Unpaid bill counter
  1755.  
  1756. while true {                    # Loop
  1757.     fread /line \%c line        # Get a record
  1758.     if fail exit                # End of file
  1759.     .n := \fsplit(\m(line),&a,\44,CSV)    # Split the fields into an array
  1760.     if not equ "\m(oldserial)" "\&a[6]" { # Have new serial number?
  1761.         # Remove all records for previous serial number
  1762.         # if two or more bills were not paid...
  1763.         if > \m(zeros) 1 {
  1764.             grep /nomatch \m(oldserial) /output:./new2 ./new
  1765.             rename ./new2 ./new
  1766.         }
  1767.         .oldserial := \&a[6]    # To detect next time serial number changes
  1768.         .zeros = 0              # Reset unpaid bill counter
  1769.     }
  1770.     if equ "\&a[5]" "$0.00" {   # Element 5 is amount paid
  1771.         increment zeros         # If it's zero, count it.
  1772.     }
  1773. }
  1774. fclose \%c
  1775.  
  1776.    Rewriting the file multiple times is inelegant, but this is a quick and
  1777.    dirty use-once-and-discard script, so elegance doesn't count. The
  1778.    example is interesting in that it purges certain records based on the
  1779.    contents of other records. Maybe there is a way to do this directly
  1780.    with SQL, but why use SQL when you can use Kermit?
  1781.  
  1782.    Here is the same task but this time no shelling out, and this time we
  1783.    do change and add some fields and then join the result back into a CSV
  1784.    record and write it out to a new file. The object is to create a record
  1785.    for each license that shows not only the date and purchase price of the
  1786.    license but also the date and amount of the last maintenance payment,
  1787.    and to add new fields for sorting by anniversary (month and day):
  1788.  
  1789. #!usr/local/bin/kermit +
  1790. cd ~/somedirectory                      # CD to appropriate directory
  1791. if fail exit 1                          # Make sure we did
  1792. .filename := \%1                        # Filename from command line
  1793. if not def filename {                   # If none give usage message
  1794.     exit 1 "Usage: \%0: infile [ outfile ]"
  1795. }
  1796. fopen /read \%c \m(filename)            # Open the input CSV file
  1797. if fail exit                            # Make sure we did
  1798.  
  1799. .output := \%2                          # Output filename from command line
  1800. if not def output {                     # Supply one if not given
  1801.     .output := New_\m(filename)
  1802. }
  1803. fopen /write \%o \m(output)             # Open output file
  1804. if fail exit                            # Check that we did
  1805.  
  1806. .serial = 00000000000                   # Initialize serial number
  1807. .licenses = 0                           # and license counter
  1808.  
  1809. fread /line \%c line                        # First line is column labels
  1810. if fail exit                                # Check
  1811. fwrite /line \%o "\m(line),AMM_DD,AYYYY"    # Write new labels line
  1812.  
  1813. # Remaining lines are license purchases (K95B) followed by zero or more
  1814. # maintenance invoices (K95BM) for each license.
  1815.  
  1816. .datepaid = 00/00/0000                  # Initialize last maint payment date
  1817. .amtpaid = $0.00                        # Initialize last maint payment amount
  1818. set flag off                            # For remembering we're at end of file
  1819. while not flag {                        # Loop to read all records
  1820.     fread /line \%c line                # Read a record
  1821.     if fail set flag on                 # If EOF set flag for later
  1822.     .n := \fsplit(\m(line),&a,\44,CSV)  # Break record into array
  1823.     if ( flag || equ "\&a[3]" "K95B" ) { # License or EOF
  1824.         if fail exit 1 "FAILED: \v(lastcommand)"
  1825.         if licenses {                   # If this is not the first license
  1826.             .\&x[5] := \m(amtpaid)      # Substitute most recent amount paid
  1827.             .\&x[21] := \m(datepaid)    # Substitute most recent date paid
  1828.             void \fsplit(\&x[18],&d,/)  # Break up original (anniversary) date
  1829.             # and put mm_dd and yyyy in separate fields for sorting...
  1830.             fwrite /line \%o "\fjoin(&x,CSV),\flpad(\&d[1],2,0)_\flpad(\&d[2],2,
  1831. 0),\&d[3]"
  1832.             if fail exit 1 WRITE        # Check for error
  1833.             xecho .                     # Show progress as one dot per record
  1834.         }
  1835.         if flag break                   # We're at EOF so we're finished
  1836.         increment licenses              # New license - count it
  1837.         array copy &a &x                # Keep this record while reading next
  1838.         .serial := \&a[6]               # Remember serial number
  1839.         .datepaid = 00/00/0000          # Initial maintenance payment date
  1840.         .amtpaid = $0.00                # and amount
  1841.         continue                        # and go back to read next record
  1842.     }
  1843.     if not eq "\m(serial)" "\&a[6]" {   # Catch out-of-sequence record
  1844.         echo
  1845.         echo "SEQUENCE: \m(serial)..\&a[6]: \&a[7] [\&a[1]]"
  1846.         continue
  1847.     }
  1848.     if equ "\&a[5]" "" .\&a[5] = $0.00  # If amount is empty make it $0.00
  1849.     if not equ "\&a[5]" "$0.00" {       # If amount is not $0.00
  1850.         .datepaid := \&a[21]            # remember date paid
  1851.         .amtpaid := \&a[5]              # and amount paid
  1852.     }
  1853. }
  1854. fclose ALL                              # Done - close all files and exit
  1855. exit 0 Done.
  1856.  
  1857.  
  1858.    The result imports back into Excel, where it can be sorted, formatted,
  1859.    or otherwise manipulated as desired.
  1860.  
  1861. Using CSV Files: Extending Kermit's Data Structures
  1862.  
  1863.    Now that we can parse a CSV record, what would we do with a CSV file -
  1864.    that is, a sequence of records? If we needed all the data available at
  1865.    once, we would want to load it into a matrix of (row,column) values.
  1866.    But Kermit doesn't have matrices. Or does it?
  1867.  
  1868.    Kermit has several built-in data types, but you can invent your own
  1869.    data types as needed using Kermit's macro feature:
  1870.  
  1871. define variablename value
  1872.  
  1873.    For example:
  1874.  
  1875. define alphabet abcdefghijklmnopqrstuvwxyz
  1876.  
  1877.    This defines a macro named alphabet and gives it the value
  1878.    abcdefghijklmnopqrstuvwxyz. A more convenient notation (added in
  1879.    C-Kermit 7.0, see [111]Table 2) for this is:
  1880.  
  1881. .alphabet = abcdefghijklmnopqrstuvwxyz
  1882.  
  1883.    The two are exactly equivalent: they make a literal copy the "right
  1884.    hand side" as the value of the macro. Then you can refer to the macro
  1885.    anywhere in a Kermit command as "\m(macroname)":
  1886.  
  1887. echo "Alphabet = \m(alphabet)"
  1888.  
  1889.    There is a second way to define a macro, which is like the first except
  1890.    that the right-hand side is evaluated first; that is, any variable
  1891.    references or function calls in the right-hand side are replaced by
  1892.    their values before the result is assigned to the macro. The command
  1893.    for this is ASSIGN rather than DEFINE:
  1894.  
  1895. define alphabet abcdefghijklmnopqrstuvwxyz
  1896. assign backwards \freverse(\m(alphabet))
  1897. echo "Alphabet backwards = \m(backwards)"
  1898.  
  1899.    which prints:
  1900.  
  1901. Alphabet backwards = zyxwvutsrqponmlkjihgfedcba
  1902.  
  1903.    This kind of assignment can also be done like this:
  1904.  
  1905. .alphabet = abcdefghijklmnopqrstuvwxyz
  1906. .backwards := \freverse(\m(alphabet))
  1907.  
  1908.    [112]Any command starting with a period is an assignment, and the
  1909.    operator (= or :=) tells what to do with the right-hand side before
  1910.    making the assignment.
  1911.  
  1912.    In both the DEFINE and ASSIGN commands, the variable name itself is
  1913.    taken literally. It is also possible, however, to have Kermit compute
  1914.    the variable name. This is done (as described in [113]Using C-Kermit,
  1915.    2nd Ed., p.457), using parallel commands that start with underscore:
  1916.    _DEFINE and _ASSIGN (alias _DEF and _ASG). These are just like DEFINE
  1917.    and ASSIGN except they evaluate the variable name before making the
  1918.    assignment. For example:
  1919.  
  1920. define \%a one
  1921. _define \%a\%a\%a 111
  1922.  
  1923.    would create a macro named ONEONEONE with a value of 111, and:
  1924.  
  1925. define \%a one
  1926. define number 111
  1927. _assign \%a\%a\%a \m(number)
  1928.  
  1929.    would create the same macro with the same value, but:
  1930.  
  1931. define \%a one
  1932. define number 111
  1933. _define \%a\%a\%a \m(number)
  1934.  
  1935.    would give the macro a value of "\m(number)".
  1936.  
  1937.    You can use the _ASSIGN command to create any kind of data structure
  1938.    you want; you can find some examples in the [114]Object-Oriented
  1939.    Programming section of the [115]Kermit Script Library. In the following
  1940.    program we use this capability to create a two-dimensional array, or
  1941.    matrix, to hold the all the elements of the CSV file, and then to
  1942.    display the matrix:
  1943.  
  1944. fopen /read \%c data.csv                # Open CSV file
  1945. if fail exit 1
  1946.  
  1947. .\%r = 0                                # Row
  1948. .\%m = 0                                # Maximum columns
  1949. while true {
  1950.     fread /line \%c line                # Read a record
  1951.     if fail break                       # End of file
  1952.     .\%n := \fsplit(\m(line),&a,\44,CSV) # Split record into items
  1953.     incr \%r                            # Count this row
  1954.     for \%i 1 \%n 1 {                   # Assign items to this row of matrix
  1955.         _asg a[\%r][\%i] \&a[\%i]
  1956.     }
  1957.     if > \%i \%m { .\%m := \%i }        # Remember width of widest row
  1958. }
  1959. fclose \%c                              # Close CSV file
  1960. decrement \%m                           # (because of how FOR loop works)
  1961. echo MATRIX A ROWS: \%r COLUMNS: \%m    # Show the matrix
  1962.  
  1963. for \%i 1 \%r 1 {                       # Loop through rows
  1964.     for \%j 1 \%m 1 {                   # Loop through columns of each row
  1965.         xecho "\flpad(\m(a[\%i][\%j]),6)"
  1966.     }
  1967.     echo
  1968. }
  1969. exit 0
  1970.  
  1971.    The matrix is called a and its elements are a[1][1], a[1][2], a[1][3],
  1972.    ... a[2][1], etc, and you can treat this data structure exactly like a
  1973.    two-dimensional array, in which you can refer to any element by its "X
  1974.    and Y coordinates". For example, if the CSV file contained numeric data
  1975.    you could compute row and column sums using simple FOR loops and
  1976.    Kermit's built-in one-dimensional array data type:
  1977.  
  1978. declare \&r[\%r]                        # Make an array for the row sums
  1979. declare \&c[\%m]                        # Make an array for the column sums
  1980. for \%i 1 \%r 1 {                       # Loop through rows
  1981.     for \%j 1 \%m 1 {                   # Loop through columns of each row
  1982.         increment \&r[\%i] \m(a[\%i][\%j]) # Accumulate row sum
  1983.         increment \&c[\%j] \m(a[\%i][\%j]) # Accumulate column sum
  1984.     }
  1985. }
  1986.  
  1987.    Note that the sum arrays don't have to be initialized to zero because
  1988.    Kermit's INCREMENT command treats empty definitions as zero.
  1989.  
  1990. Demonstration Scripts for Webmasters
  1991.  
  1992.    These scripts all use new features of C-Kermit 9.0.
  1993.  
  1994.    [116]ksitemap
  1995.           A C-Kermit 9.0 script to build sitemap.xml for a website,
  1996.           complete with Google image extensions (this is the file used by
  1997.           webmasters to get their sites crawled and indexed optimally).
  1998.  
  1999.    [117]The Weblog Script
  2000.           Reads a web log, extracts the Google searches, normalizes the
  2001.           search strings, and prints the top 20 searches, along with their
  2002.           counts.
  2003.  
  2004.    [118]The Amazon Script
  2005.           Reads an Amazon Associate orders report and lists the products
  2006.           according to the number of orders for each, or the number of
  2007.           clicks on each.
  2008.  
  2009.    [119]Photoalbum
  2010.           Makes a website from a collection of JPG images.
  2011.  
  2012.             [120]Home [121]Kermit 95 [122]C-Kermit [123]Scripts [124]Current
  2013.    [125]New [126]FAQ  [127]Support
  2014.  
  2015.  
  2016.     C-Kermit 9.0 / [128]The Kermit Project / [129]Columbia University /
  2017.     [130]kermit@columbia.edu / [131]validate
  2018.  
  2019. References
  2020.  
  2021.    1. http://www.columbia.edu/
  2022.    2. mailto:kermit@columbia.edu
  2023.    3. http://www.columbia.edu/kermit/index.html
  2024.    4. http://www.columbia.edu/kermit/k95.html
  2025.    5. http://www.columbia.edu/kermit/ckermit.html
  2026.    6. http://www.columbia.edu/kermit/ckscripts.html
  2027.    7. http://www.columbia.edu/kermit/current.html
  2028.    8. http://www.columbia.edu/kermit/whatsnew.html
  2029.    9. http://www.columbia.edu/kermit/faq.html
  2030.   10. http://www.columbia.edu/kermit/support.html
  2031.   11. http://www.columbia.edu/cu/computinghistory/books/#menagerie
  2032.   12. http://www.columbia.edu/kermit/ck90tables.html
  2033.   13. http://www.amazon.com/gp/product/1555581641?ie=UTF8&tag=aleidmoreldom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1555581641
  2034.   14. http://www.columbia.edu/kermit/ckermit.html#download
  2035.   15. http://www.columbia.edu/kermit/ckermit90.html#LargeFiles
  2036.   16. http://www.columbia.edu/kermit/ckermit90.html#TestLargeFiles
  2037.   17. http://www.columbia.edu/kermit/ckermit90.html#Bignums
  2038.   18. http://www.columbia.edu/kermit/ckermit90.html#force3
  2039.   19. http://www.columbia.edu/kermit/ckermit90.html#Vareval
  2040.   20. http://www.columbia.edu/kermit/ckermit90.html#rename
  2041.   21. http://www.columbia.edu/kermit/ckermit90.html#Other
  2042.   22. http://www.columbia.edu/kermit/ckermit90.html#Incompatibilities
  2043.   23. http://www.columbia.edu/kermit/ckermit90.html#NotIn9.0
  2044.   24. http://www.columbia.edu/kermit/ckermit90.html#LooseEnd
  2045.   25. http://www.columbia.edu/kermit/ckermit90.html#pop
  2046.   26. http://www.columbia.edu/kermit/ckermit90.html#HPswitch
  2047.   27. http://www.columbia.edu/kermit/ckermit90.html#iLO
  2048.   28. http://www.columbia.edu/kermit/ckermit90.html#Rolm
  2049.   29. http://www.columbia.edu/kermit/ckermit90.html#CSV
  2050.   30. http://www.columbia.edu/kermit/ckermit90.html#Otherdemos
  2051.   31. http://www.columbia.edu/kermit/ck60manual.html
  2052.   32. http://www.amazon.com/gp/product/B002ACPF9M?ie=UTF8&tag=aleidmoreldom-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B002ACPF9M
  2053.   33. http://www.columbia.edu/kermit/ckermit70.html
  2054.   34. http://www.columbia.edu/kermit/ckermit80.html
  2055.   35. http://www.columbia.edu/kermit/ckscripts.html
  2056.   36. http://www.columbia.edu/cu/computinghistory/dec20.html
  2057.   37. mailto:fdc@columbia.edu
  2058.   38. http://www.columbia.edu/kermit/k95.html
  2059.   39. http://www.columbia.edu/kermit/cu-bsd-license.html
  2060.   40. http://www.columbia.edu/kermit/ckermit90.html#LargeFiles
  2061.   41. http://www.columbia.edu/kermit/ck90tables.html
  2062.   42. http://www.columbia.edu/kermit/ck90tables.html
  2063.   43. http://www.columbia.edu/kermit/ckermit90.html#force3
  2064.   44. http://www.columbia.edu/kermit/ckermit90.html#Vareval
  2065.   45. http://www.columbia.edu/kermit/ckrename.html
  2066.   46. http://www.columbia.edu/kermit/csv.html
  2067.   47. http://www.columbia.edu/kermit/csetnames.html
  2068.   48. http://www.columbia.edu/kermit/ckermit90.html#HPswitch
  2069.   49. http://www.columbia.edu/kermit/ckdaily.html
  2070.   50. http://www.columbia.edu/kermit/cu-bsd-license.html
  2071.   51. http://www.opensource.org/
  2072.   52. http://kermit.columbia.edu/ck90tables.html#LF
  2073.   53. ftp://kermit.columbia.edu/kermit/utils/bigfile.c
  2074.   54. http://www.columbia.edu/kermit/ckermit80.html#x9
  2075.   55. http://www.columbia.edu/kermit/ck90tables.html#LF
  2076.   56. ftp://kermit.columbia.edu/kermit/scripts/ckermit/easter2
  2077.   57. http://www.columbia.edu/kermit/em-apex.html
  2078.   58. http://www.iridium.com/
  2079.   59. http://science1.nasa.gov/science-news/science-at-nasa/2006/09jan_electrichurricanes/
  2080.   60. http://www.columbia.edu/kermit/ek.html
  2081.   61. ftp://kermit.columbia.edu/kermit/ek/simirid/
  2082.   62. http://www.columbia.edu/kermit/ek.html
  2083.   63. http://www.columbia.edu/kermit/ckermit70.html#x7.10.10
  2084.   64. http://www.columbia.edu/kermit/csv.html
  2085.   65. http://www.columbia.edu/kermit/ckermit70.html#x1.11
  2086.   66. http://www.columbia.edu/kermit/ckermit70.html
  2087.   67. http://www.columbia.edu/kermit/ckermit80.html#x9
  2088.   68. http://www.columbia.edu/kermit/csetnames.html
  2089.   69. http://www.columbia.edu/kermit/ckdaily.html
  2090.   70. http://www.columbia.edu/kermit/ftpclient.html
  2091.   71. http://www.columbia.edu/kermit/ckdaily.html
  2092.   72. http://www.columbia.edu/kermit/csetnames.html
  2093.   73. http://www.columbia.edu/kermit/ckermit90.html#Otherdemos
  2094.   74. http://www.columbia.edu/kermit/input_nowrap.html
  2095.   75. http://www.columbia.edu/~fdc/mm/index.html
  2096.   76. http://www.columbia.edu/kermit/photoalbum.html
  2097.   77. http://www.columbia.edu/~fdc/kermit/logserial.html
  2098.   78. http://www.columbia.edu/kermit/ckermit90.html#message
  2099.   79. http://www.columbia.edu/kermit/ckermit90.html#NotIn9.0
  2100.   80. http://www.columbia.edu/kermit/csv.html#join
  2101.   81. http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3767
  2102.   82. http://www.columbia.edu/kermit/ftp/test/tar/x.zip
  2103.   83. http://www.mseclab.com/?p=180
  2104.   84. http://www.theregister.co.uk/2009/07/30/universal_ssl_certificate/
  2105.   85. http://www.columbia.edu/kermit/ckermit90.html#HPswitch
  2106.   86. http://www.columbia.edu/kermit/em-apex.html
  2107.   87. http://www.freebsd.org/releases/8.0R/announce.html
  2108.   88. http://www.columbia.edu/kermit/security81.html#x4.2.3
  2109.   89. http://www.columbia.edu/kermit/ckermit80.html#x9
  2110.   90. http://www.columbia.edu/kermit/ckermit80.html#x8.7.2
  2111.   91. http://www.columbia.edu/kermit/ckermit80.html#x9
  2112.   92. http://www.columbia.edu/kermit/ckpackages.html
  2113.   93. http://docs.hp.com/en/B9106-90013/pty.7.html
  2114.   94. http://www.columbia.edu/kermit/test/text/ckc299.txt
  2115.   95. http://www.columbia.edu/kermit/test/text/ckutio.c
  2116.   96. http://www.columbia.edu/~fdc/mm/pop
  2117.   97. http://www.columbia.edu/~fdc/mm/
  2118.   98. http://www.columbia.edu/~fdc/mm/mailcheck
  2119.   99. http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol
  2120.  100. http://www.columbia.edu/kermit/ftp/scripts/ckermit/gethpconfig
  2121.  101. http://www.columbia.edu/kermit/ftp/scripts/ckermit/TestSwitches.txt
  2122.  102. http://en.wikipedia.org/wiki/Standard_streams
  2123.  103. http://kermit.columbia.edu/cudocs/ilosetup.html
  2124.  104. http://www.columbia.edu/kermit/cudocs/cbx.html
  2125.  105. http://www.columbia.edu/kermit/ckermit90.html#record
  2126.  106. http://www.columbia.edu/kermit/ckermit90.html#join
  2127.  107. http://www.columbia.edu/kermit/ckermit90.html#file
  2128.  108. http://www.columbia.edu/kermit/ckermit80.html#fjoin
  2129.  109. http://www.columbia.edu/kermit/ckermit90.html#rules
  2130.  110. http://www.columbia.edu/kermit/ckermit80.html#fjoin
  2131.  111. http://www.columbia.edu/kermit/ckermit90.html#varasg
  2132.  112. http://www.columbia.edu/kermit/ckermit70.html#x7.9
  2133.  113. http://www.amazon.com/gp/product/1555581641?ie=UTF8&tag=aleidmoreldom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1555581641
  2134.  114. http://www.columbia.edu/kermit/ckscripts.html#oops
  2135.  115. http://www.columbia.edu/kermit/ckscripts.html
  2136.  116. http://www.columbia.edu/kermit/ksitemap.html
  2137.  117. http://www.columbia.edu/kermit/weblog.html
  2138.  118. http://kermit.columbia.edu/ftp/scripts/ckermit/amazon
  2139.  119. http://www.columbia.edu/kermit/photoalbum.html
  2140.  120. http://www.columbia.edu/kermit/index.html
  2141.  121. http://www.columbia.edu/kermit/k95.html
  2142.  122. http://www.columbia.edu/kermit/ckermit.html
  2143.  123. http://www.columbia.edu/kermit/ckscripts.html
  2144.  124. http://www.columbia.edu/kermit/current.html
  2145.  125. http://www.columbia.edu/kermit/whatsnew.html
  2146.  126. http://www.columbia.edu/kermit/faq.html
  2147.  127. http://www.columbia.edu/kermit/support.html
  2148.  128. http://www.columbia.edu/kermit/index.html
  2149.  129. http://www.columbia.edu/
  2150.  130. mailto:kermit@columbia.edu
  2151.  131. http://validator.w3.org/check?uri=http%3A%2F%2Fkermit.columbia.edu%2Fckermit90.html
  2152.