-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

csvcut


> Filter and truncate CSV files. Like Unix's `cut` command, but for tabular data.

> Included in csvkit.

More information.


Print indices and names of all columns:

csvcut -n {data.csv}

Extract the first and third columns:

csvcut -c {1,3} {data.csv}

Extract all columns **except** the fourth one:

csvcut -C {4} {data.csv}

Extract the columns named "id" and "first name" (in that order):

csvcut -c {id,"first name"} {data.csv}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 16:26:28 2024