| Main index | Section 1 | 日本語 | Options |
If only the start column is specified, columns numbered less than the start column will be written. If both start and stop columns are specified, columns numbered less than the start column or greater than the stop column will be written. Column numbering starts with one, not zero.
Tab characters increment the column count to the next multiple of eight. Backspace characters decrement the column count by one.
$ echo -e "abcdefgh\n12345678" | colrm 3 5 abfgh 12678
Specifying a start column bigger than the number of columns in the file is allowed and shows all the columns:
$ echo "abcdefgh" | colrm 100 abcdefgh
Using 1 as start column will show nothing:
$ echo "abcdefgh" | colrm 1
| COLRM (1) | June 23, 2020 |
| Main index | Section 1 | 日本語 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
| “ | I define UNIX as “30 definitions of regular expressions living under one roof.” | ” |
| — Donald Knuth | ||