ubuntu:bash:cut
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
ubuntu:bash:cut [2019/11/29 10:36] – peter | ubuntu:bash:cut [2019/12/07 01:36] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ubuntu - Bash - cut ====== | ||
- | |||
- | cut - remove sections from each line of files | ||
- | |||
- | **cut** can return section based on number of bytes (-b), characters (-c), or fields (-f) when fields are separated by a delimiter(-d). | ||
- | |||
- | Default delimiter is tab. | ||
- | |||
- | ---- | ||
- | |||
- | A range must be provided in each case which consists of one of N, N-M, N-(N to last) or -M (first to M) | ||
- | |||
- | <code bash> | ||
- | cut -c 2-4 | ||
- | abcdef | ||
- | </ | ||
- | |||
- | Press CTRL+D to stop inputting | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | bcd | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -c 3 | ||
- | abcdef | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | c | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -c 2,4,7 | ||
- | alongtext | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | lne | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -c -2 | ||
- | abcdef | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | ab | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -c 2- | ||
- | abcdef | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | bcdef | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -c 1,6-9,16- | ||
- | alongtextwithnospaces | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | atextspaces | ||
- | </code | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -f 2- -d ':' | ||
- | 23:34:45:56 | ||
- | </ | ||
- | |||
- | NOTE: -d specifies delimiter | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | 34:45:56 | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -f 2 | ||
- | er rt fg wd ji | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | er rt fg wd ji | ||
- | </ | ||
- | |||
- | NOTE: cut didn't find the delimiter (default is tab) so returns whole line. | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -f 2 -s | ||
- | er rt fg wd ji | ||
- | </ | ||
- | |||
- | NOTE: cut wont print as -s flag is used to prevent printing when delimiter not found. | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | cut -d: -f1 /etc/passwd > | ||
- | </ | ||
ubuntu/bash/cut.1575023783.txt.gz · Last modified: 2020/07/15 09:30 (external edit)