ED.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:2k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. ED(1)                     Minix Programmer's Manual                      ED(1)
  2. NAME
  3.      ed - editor
  4. SYNOPSIS
  5.      ed file
  6. OPTIONS
  7.      -    Suppress line/byte count messages (for in scripts)
  8. EXAMPLES
  9.      ed prog.c           # Edit prog.c
  10.      echo '1,$p' | ed - file
  11.                          # Odd way to write 'cat file'
  12. DESCRIPTION
  13.      Ed is functionally equivalent to the standard V7 editor, ed. It  supports
  14.      the following commands:
  15.            (.)  a: append
  16.            (.,.) c: change
  17.            (.,.) d: delete
  18.                 e: edit new file"
  19.                 f: print name of edited file"
  20.            (1,$) g: global command
  21.            (.)  i: insert
  22.            (.,.+1) j: join lines together
  23.            (.)  k: mark
  24.            (.)  l: print with special characters in octal
  25.            (.,.) m: move
  26.            (.,.) p: print
  27.                 q: quit editor"
  28.            (.)  r: read in new file
  29.            (.,.) s: substitute
  30.            (1,$) v: like g, except select lines that do not match
  31.            (1,$) w: write out edited file
  32.      Many of the commands can take one or two addresses, as  indicated  above.
  33.      The  defaults  are  shown  in parentheses.  Thus a appends to the current
  34.      line, and g works on the whole file as default. The  dot  refers  to  the
  35.      current  line.   Below  is  a  sample editing session with comments given
  36.      following the # symbol.
  37.            ed prog.c               # Edit prog.c
  38.            3,20p                   # Print lines 3 through 20
  39.            /whole/                 # Find next occurence of whole
  40.            s/whole/while/          # Replace whole by while
  41.            g/Buf/s//BUF/g          # Replace Buf by BUF everywhere
  42.                                                                              1
  43. ED(1)                     Minix Programmer's Manual                      ED(1)
  44.            w                       # Write the file back
  45.            q                       # Exit the editor
  46.      Ed is provided for its sentimental value.  If you  want  a  line-oriented
  47.      editor, try ex.  If you want a good editor, use elle, elvis, or mined.
  48. SEE ALSO
  49.      elvis(1), elle(9), mined(9).
  50.                                                                              2