From 0db5d3a67869f2397aff9db66a3507fb876cf785 Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Thu, 21 Jan 2016 18:03:45 -0500 Subject: [PATCH] added csvlook.md --- pages/common/csvlook.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/csvlook.md diff --git a/pages/common/csvlook.md b/pages/common/csvlook.md new file mode 100644 index 0000000000..9e8726832a --- /dev/null +++ b/pages/common/csvlook.md @@ -0,0 +1,16 @@ +# csvlook + +> Render a CSV file in the console as a fixed-width table. +> Included in csvkit. + +- View a CSV file: + +`csvlook {{data.csv}}` + +- View a CSV file with _less_ for easy scrolling: + +`csvlook {{data.csv}} | less` + +- View columns 2 and 3 of a CSV file: + +`csvcut -c {{2,3}} | csvlook`