Home | History | Annotate | Line # | Download | only in ed
POSIX revision 1.8
      1  1.7  alm This version of ed(1) is not strictly POSIX compliant, as described in
      2  1.7  alm the POSIX 1003.2 document.  The following is a summary of the omissions,
      3  1.7  alm extensions and possible deviations from POSIX 1003.2.
      4  1.7  alm 
      5  1.7  alm OMISSIONS
      6  1.7  alm ---------
      7  1.7  alm 1) Locale(3) is not supported yet.
      8  1.7  alm 
      9  1.7  alm 2) For backwards compatibility, the POSIX rule that says a range of
     10  1.7  alm    addresses cannot be used where only a single address is expected has
     11  1.7  alm    been relaxed.
     12  1.7  alm 
     13  1.8  alm 3) To support the BSD `s' command (see extension [1] below),
     14  1.8  alm    substitution patterns cannot be delimited by numbers or the characters
     15  1.8  alm    `r', `g' and `p'.  In contrast, POSIX specifies any character expect
     16  1.8  alm    space or newline can used as a delimiter.
     17  1.8  alm 
     18  1.7  alm EXTENSIONS
     19  1.7  alm ----------
     20  1.7  alm 1) BSD commands have been implemented wherever they do not conflict with
     21  1.7  alm    the POSIX standard.  The BSD-ism's included are:
     22  1.8  alm 	i) `s' (i.e., s[n][rgp]*) to repeat a previous substitution,
     23  1.7  alm 	ii) `W' for appending text to an existing file,
     24  1.7  alm 	iii) `wq' for exiting after a write,
     25  1.7  alm 	iv) `z' for scrolling through the buffer, and
     26  1.7  alm 	v) BSD line addressing syntax (i.e., `^' and `%')  is recognized.
     27  1.7  alm 
     28  1.7  alm 2) If crypt(3) is available, files can be read and written using DES
     29  1.7  alm    encryption.  The `x' command prompts the user to enter a key used for
     30  1.7  alm    encrypting/ decrypting subsequent reads and writes.  If only a newline
     31  1.7  alm    is entered as the key, then encryption is disabled.  Otherwise, a key
     32  1.7  alm    is read in the same manner as a password entry.  The key remains in
     33  1.7  alm    effect until encryption is disabled.  For more information on the
     34  1.7  alm    encryption algorithm, see the bdes(1) man page.  Encryption/decryption
     35  1.8  alm    should be fully compatible with SunOS des(1).
     36  1.7  alm 
     37  1.7  alm 3) The POSIX interactive global commands `G' and `V' are extended to 
     38  1.7  alm    support multiple commands, including `a', `i' and `c'.  The command
     39  1.7  alm    format is the same as for the global commands `g' and `v', i.e., one
     40  1.7  alm    command per line with each line, except for the last, ending in a
     41  1.7  alm    backslash (\).
     42  1.7  alm 
     43  1.8  alm 4) An extension to the POSIX file commands `E', `e', `r', `W' and `w' is
     44  1.7  alm    that <file> arguments are processed for backslash escapes, i.e.,  any
     45  1.7  alm    character preceded by a backslash is interpreted literally.  If the
     46  1.7  alm    first unescaped character of a <file> argument is a bang (!), then the
     47  1.7  alm    rest of the line is interpreted as a shell command, and no escape
     48  1.7  alm    processing is performed by ed.
     49  1.7  alm 
     50  1.8  alm 5) For SunOS ed(1) compatibility, ed runs in restricted mode if invoked
     51  1.7  alm    as red.  This limits editing of files in the local directory only and
     52  1.7  alm    prohibits shell commands.
     53  1.7  alm 
     54  1.7  alm DEVIATIONS
     55  1.7  alm ----------
     56  1.8  alm 1) Though ed is not a stream editor, it can be used to edit binary files.
     57  1.8  alm    To assist in binary editing, when a file containing at least one ASCII
     58  1.8  alm    NUL character is written, a newline is not appended if it did not
     59  1.8  alm    already contain one upon reading.  In particular, reading /dev/null
     60  1.8  alm    prior to writing prevents appending a newline to a binary file.
     61  1.8  alm 
     62  1.8  alm    For example, to create a file with ed containing a single NUL character:
     63  1.8  alm       $ ed file
     64  1.8  alm       a
     65  1.8  alm       ^@
     66  1.8  alm       .
     67  1.8  alm       r /dev/null
     68  1.8  alm       wq
     69  1.8  alm 
     70  1.8  alm     Similarly, to remove a newline from the end of binary `file':
     71  1.8  alm       $ ed file
     72  1.8  alm       r /dev/null
     73  1.8  alm       wq
     74  1.8  alm 
     75  1.8  alm 2) Since the behavior of `u' (undo) within a `g' (global) command list is
     76  1.8  alm    not specified by POSIX, it follows the behavior of the SunOS ed:
     77  1.8  alm    undo forces a global command list to be executed only once, rather than
     78  1.8  alm    for each line matching a global pattern.  In addtion, each instance of
     79  1.8  alm    `u' within a global command undoes all previous commands (including
     80  1.8  alm    undo's) in the command list.  This seems the best way, since the
     81  1.8  alm    alternatives are either too complicated to implement or too confusing
     82  1.8  alm    to use.  
     83  1.8  alm 
     84  1.8  alm    The global/undo combination is useful for masking errors that
     85  1.8  alm    would otherwise cause a script to fail.  For instance, an ed script
     86  1.8  alm    to remove any occurences of either `censor1' or `censor2' might be
     87  1.8  alm    written as:
     88  1.8  alm    	ed - file <<EOF
     89  1.8  alm 	1g/.*/u\
     90  1.8  alm 	,s/censor1//g\
     91  1.8  alm 	,s/censor2//g
     92  1.8  alm 	...
     93  1.7  alm 
     94  1.8  alm 3) The `m' (move) command within a `g' command list also follows the SunOS
     95  1.7  alm    ed implementation: any moved lines are removed from the global command's
     96  1.7  alm    `active' list.
     97  1.7  alm 
     98  1.8  alm 4) If ed is invoked with a name argument prefixed by a bang (!), then the
     99  1.7  alm    remainder of the argument is interpreted as a shell command.  To invoke
    100  1.7  alm    ed on a file whose name starts with bang, prefix the name with a
    101  1.7  alm    backslash.
    102