Unix and Linux Discussions Tagged with cut |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
7,422 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,293 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
17,762 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,385 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
21,572 |
Shell Programming and Scripting |
|
|
|
3 |
3,859 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,875 |
Shell Programming and Scripting |
|
|
|
4 |
2,875 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
7,022 |
Shell Programming and Scripting |
|
|
|
8 |
5,878 |
Shell Programming and Scripting |
|
|
|
6 |
2,220 |
Shell Programming and Scripting |
|
|
|
3 |
1,695 |
Shell Programming and Scripting |
|
|
|
15 |
5,615 |
Shell Programming and Scripting |
|
|
|
7 |
10,924 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
8,445 |
UNIX for Beginners Questions & Answers |
|
|
|
23 |
7,400 |
Shell Programming and Scripting |
|
|
|
14 |
6,102 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
6,191 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,358 |
Shell Programming and Scripting |
|
|
|
31 |
12,636 |
Shell Programming and Scripting |
|
|
|
6 |
4,560 |
Shell Programming and Scripting |
|
|
|
4 |
2,643 |
Shell Programming and Scripting |
|
|
|
2 |
7,536 |
Shell Programming and Scripting |
|
|
|
4 |
13,252 |
Shell Programming and Scripting |
|
|
|
3 |
2,687 |
Shell Programming and Scripting |
|
|
|
5 |
3,094 |
Shell Programming and Scripting |
|
|
|
6 |
7,390 |
Solaris |
|
|
|
4 |
7,186 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
7,101 |
Shell Programming and Scripting |
|
|
|
8 |
6,248 |
Shell Programming and Scripting |
|
|
|
3 |
4,793 |
Shell Programming and Scripting |
|
|
|
6 |
3,790 |
Shell Programming and Scripting |
|
|
|
2 |
8,520 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,777 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,654 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
6,373 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
4,745 |
Shell Programming and Scripting |
|
|
|
1 |
3,073 |
Shell Programming and Scripting |
|
|
|
2 |
3,118 |
Shell Programming and Scripting |
|
|
|
3 |
4,693 |
Shell Programming and Scripting |
cut(1) General Commands Manual cut(1)
Name
cut - cut out selected fields of each line of a file
Syntax
cut -clist [file1 file2...]
cut -flist [-dchar] [-s] [file1 file2...]
Description
Use the command to cut out columns from a table or fields from each line of a file. The fields as specified by list can be fixed length,
that is, character positions as on a punched card (-c option), or the length can vary from line to line and be marked with a field delim-
iter character like tab (-f option). The command can be used as a filter. If no files are given, the standard input is used.
Use to make horizontal ``cuts'' (by context) through a file, or to put files together in columns. To reorder columns in a table, use and
Options
list Specifies ranges that must be a comma-separated list of integer field numbers in increasing order. With optional - indicates
ranges as in the -o option of nroff/troff for page ranges; for example, 1,4,7; 1-3,8; -5,10 (short for 1-5,10); or 3- (short
for third through last field).
-clist Specifies character positions to be cut out. For example, -c1-72 would pass the first 72 characters of each line.
-flist Specifies the fields to be cut out. For example, -f1,7 copies the first and seventh field only. Lines with no field delim-
iters are passed through intact (useful for table subheadings), unless -s is specified.
-dchar Uses the specified character as the field delimiter. Default is tab. Space or other characters with special meaning to the
shell must be quoted. The -d option is used only in combination with the -f option, according to XPG3 and SVID2/SVID3.
-s Suppresses lines with no delimiter characters. Unless specified, lines with no delimiters are passed through untouched.
Either the -c or -f option must be specified.
Examples
Mapping of user IDs to names:
cut -d: -f1,5 /etc/passwd
To set name to the current login name for the csh shell:
set name=`who am i | cut -f1 -d" "`
To set name to the current login name for the sh, sh5, and ksh shells:
name=`who am i | cut -f1 -d" "`
Diagnostics
"line too long" A line can have no more than 511 characters or fields.
"bad list for c/f option"
Missing -c or -f option or incorrectly specified list. No error occurs if a line has fewer fields than the list calls
for.
"no fields" The list is empty.
See Also
grep(1), paste(1)
cut(1)