Open In App

col command in Linux with Examples

Last Updated : 15 May, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

col command in Linux system is used to filter out reverse line feeds such that the output looks much more in the correct order with only forward and half forward line feeds and replaces the whitespace characters with tabs wherever possible. This can be proven useful in the processing of the output of nroff and tbl. The col utility simply reads from the standard input and writes to standard output.

Syntax:

col [-bfhpx] [-l num]

Options:

  • col -b: This option do not show any backspaces. It will print only the last character written to each of the column position.

    Example:

    man import | col -b > readme1.txt

  • col -f: This option will forward half line feeds which are permitted (“fine” mode). Normally characters printed on a half line boundary is being printed on the following line.

    Example:

    man cat | col -f > readme2.txt

  • -h : This option does not allow to show multiple spaces instead of tabs.

    Example:

    man cp | col -h > readme3.txt

  • -l num : This option will buffer at least num lines in memory. By default, 128 lines is buffered.

    Example:

    man chmod | col -l 29 > readme4.txt

  • -p : This option will force unknown control sequences to be passed through unchanged. Normally, col will filter out any of the control sequences from the input other than those recognized and interpreted by itself.

    Example:

    man wget | col -p > readme5.txt

  • -x : This option will going to output multiple spaces instead of tabs..

    Example:

    man mount | col -x > readme6.txt


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads