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

操作系统开发

开发平台:

WINDOWS

  1. CUT(1)                    Minix Programmer's Manual                     CUT(1)
  2. NAME
  3.      cut - select out columns of a file
  4. SYNOPSIS
  5.      cut [  -b | -c] list [file...]
  6.      cut -f list [-d delim] [ -s]
  7. OPTIONS
  8.      -b   Cut specified bytes
  9.      -c   Select out specific characters
  10.      -d   Change the column delimiter to delim
  11.      -f   Select out specific fields that are separated by the
  12.      -i   Runs of delimiters count as one
  13.      -s   Suppres lines with no delimiter characters, when used
  14. EXAMPLES
  15.      cut -f 2 file       # Extract field 2
  16.      cut -c 1-2,5 file   # Extract character columns 1, 2, and 5
  17.      cut -c 1-5,7- file  # Extract all columns except 6
  18. DESCRIPTION
  19.      [file...]" delimiter character ( see delim)" with the  -f  option.  Lines
  20.      with no delimiters are passwd through untouched"
  21.      Cut extracts one or more fields or columns from a file and writes them on
  22.      standard  output.   If the -f flag is used, the fields are separated by a
  23.      delimiter character, normally a tab, but can  be  changed  using  the  -d
  24.      flag.   If  the  -c flag is used, specific columns can be specified.  The
  25.      list can be comma or BLANK separated. The -f and -c flags   are  mutually
  26.      exclusive.   Note: The POSIX1003.2 standard requires the option -b to cut
  27.      out specific bytes in a file. It is intended for systems with multi  byte
  28.      characters  (e.g. kanji), since MINIX uses only one byte characters, this
  29.      option is equivalent to -c. For the same reason, the  option  -n  has  no
  30.      effect and is not listed in this manual page.
  31. SEE ALSO
  32.      sed(1), awk(9).
  33.                                                                              1