SED.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. SED(1)                    Minix Programmer's Manual                     SED(1)
  2. NAME
  3.      sed - stream editor
  4. SYNOPSIS
  5.      sed [-egn] [-f script_file] [edit_script] [file]
  6. OPTIONS
  7.      -e   Accept multiple commands commands on the commands line
  8.      -f   The following argument contains the edit script
  9.      -g   Set the global flag on all substitute commands
  10.      -n   Only output selected lines
  11. EXAMPLES
  12.      sed -f script <file # Run a sed script on file
  13.      sed '/pig/s//hog/g' <file
  14.                          # Replace pig by hog in the file
  15. DESCRIPTION
  16.      Sed is a stream editor.  It takes an edit script either from its argument
  17.      or  a  file,  and  performs  an  edit  session  on a named file or stdin,
  18.      producing output on stdout.
  19. SEE ALSO
  20.      cgrep(1), fgrep(1), grep(1), awk(9).
  21.                                                                              1