no more minix cut, printf

This commit is contained in:
Ben Gras
2010-06-22 21:19:42 +00:00
parent 86e323da6b
commit 2ac57865cb
7 changed files with 2 additions and 848 deletions

View File

@@ -2,7 +2,7 @@ MAN= acd.1 anm.1 ar.1 ash.1 asize.1 at.1 banner.1 basename.1 \
bsfilt.1 cal.1 \
calendar.1 cat.1 cawf.1 cc.1 cdiff.1 chgrp.1 \
chmem.1 chmod.1 cksum.1 clear.1 cmp.1 comm.1 compress.1 \
cp.1 crc.1 crontab.1 ctags.1 cut.1 dd.1 dev2name.1 \
cp.1 crc.1 crontab.1 ctags.1 dd.1 dev2name.1 \
df.1 dhrystone.1 diff.1 dosdir.1 dosread.1 doswrite.1 du.1 \
dumpcore.1 easypack.1 echo.1 ed.1 eject.1 elvis.1 elvrec.1 \
env.1 expand.1 expr.1 factor.1 file.1 \

View File

@@ -1,46 +0,0 @@
.TH CUT 1
.SH NAME
cut \- select out columns of a file
.SH SYNOPSIS
\fBcut \fR[\fB\-b \fR|\fB \-c\fR] \fIlist\fR [\fIfile...\fR]\fR
.br
\fBcut \-f \fIlist\fR [\fB\-d \fIdelim\fR] [\fB \-s\fR]\fR [\fIfile...\fR]
.br
.de FL
.TP
\\fB\\$1\\fR
\\$2
..
.de EX
.TP 20
\\fB\\$1\\fR
# \\$2
..
.SH OPTIONS
.FL "\-b" "Cut specified bytes."
.FL "\-c" "Select out specific characters."
.FL "\-d" "Change the column delimiter to \fIdelim\fR."
.FL "\-f" "Select out specific fields that are separated by the delimiter character (see \fIdelim\fR)."
.FL "\-i" "Runs of delimiters count as one."
.FL "\-s" "Suppress lines with no delimiter characters, when used with the \-f option. Lines with no delimiters are passed through untouched."
.SH EXAMPLES
.EX "cut \-f 2 file" "Extract field 2"
.EX "cut \-c 1\-2,5 file" "Extract character columns 1, 2, and 5"
.EX "cut \-c 1\-5,7\- file" "Extract all columns except 6"
.SH DESCRIPTION
.PP
\fICut\fR extracts one or more fields or columns from a file and writes them on
standard output.
If the \fB\-f\fR flag is used, the fields are separated by a delimiter
character, normally a tab, but can be changed using the \fB\-d\fR flag.
If the \fB\-c\fR flag is used, specific columns can be specified.
The list can be comma or BLANK separated. The \fB\-f\fR and
\fB\-c\fR flags are mutually exclusive.
Note: The POSIX1003.2 standard requires the option \fB\-b\fR to cut out
specific bytes in a file. It is intended for systems with multi byte
characters (e.g. kanji), since MINIX uses only one byte characters,
this option is equivalent to \fB\-c\fR. For the same reason, the option
\-n has no effect and is not listed in this manual page.
.SH "SEE ALSO"
.BR sed (1),
.BR awk (1x).