From ac13221b4179f8006d621acc9dee5f94ce60d364 Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Thu, 28 Jan 2016 15:11:53 -0500 Subject: [PATCH] csvcut: formatting cleanup --- pages/common/csvcut.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/csvcut.md b/pages/common/csvcut.md index f74ecf5ad2..03ad76f09f 100644 --- a/pages/common/csvcut.md +++ b/pages/common/csvcut.md @@ -1,6 +1,6 @@ # csvcut -> Filter and truncate CSV files. Like unix "cut" command, but for tabular data. +> Filter and truncate CSV files. Like Unix's `cut` command, but for tabular data. > Included in csvkit. - Print indices and names of all columns: @@ -11,7 +11,7 @@ `csvcut -c {{1,3}} {{data.csv}}` -- Extract all columns EXCEPT the fourth one: +- Extract all columns **except** the fourth one: `csvcut -C {{4}} {{data.csv}}`