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

操作系统开发

开发平台:

C/C++

  1. .TH CUT 1
  2. .SH NAME
  3. cut - select out columns of a file
  4. .SH SYNOPSIS
  5. fBcut [ fB -b fR|fB -cfR] fIlistfR [fIfile...fR]fR
  6. .br
  7. fBcut -f fIlistfR [fB-d fIdelimfR] [fB -sfR]fR
  8. .br
  9. .de FL
  10. .TP
  11. \fB\$1\fR
  12. \$2
  13. ..
  14. .de EX
  15. .TP 20
  16. \fB\$1\fR
  17. # \$2
  18. ..
  19. .SH OPTIONS
  20. .FL "-b" "Cut specified bytes"
  21. .FL "-c" "Select out specific characters"
  22. .FL "-d" "Change the column delimiter to fIdelimfR"
  23. .FL "-f" "Select out specific fields that are separated by the
  24. .FL "-i" "Runs of delimiters count as one"
  25. .FL "-s" "Suppres lines with no delimiter characters, when used
  26. .SH EXAMPLES
  27. .EX "cut -f 2 file" "Extract field 2"
  28. .EX "cut -c 1-2,5 file" "Extract character columns 1, 2, and 5"
  29. .EX "cut -c 1-5,7- file" "Extract all columns except 6"
  30. .SH DESCRIPTION
  31. [fIfile...fR]" 
  32. delimiter character ( see fIdelimfR)"
  33. with the -f option. Lines with no delimiters are passwd through
  34. untouched"
  35. .PP
  36. fICutfR extracts one or more fields or columns from a file and writes them on
  37. standard output.
  38. If the fB-ffR flag is used, the fields are separated by a delimiter 
  39. character, normally a tab, but can be changed using the fB-dfR flag.
  40. If the fB-cfR flag is used, specific columns can be specified.
  41. The list can be comma or BLANK separated. The fB-ffR and
  42. fB-cfR flags  are mutually exclusive.
  43. Note: The POSIX1003.2 standard requires the option -b to cut out
  44. specific bytes in a file. It is intended for systems with multi byte
  45. characters (e.g. kanji), since MINIX uses only one byte characters,
  46. this option is equivalent to -c. For the same reason, the option
  47. -n has no effect and is not listed in this manual page.
  48. .SH "SEE ALSO"
  49. .BR sed (1),
  50. .BR awk (9).