From a8b4159c9b611739307e6afea1f05856f2752b84 Mon Sep 17 00:00:00 2001 From: Guilherme Silva Date: Mon, 25 Nov 2019 17:50:45 +0000 Subject: [PATCH] csvkit: add page (#3386) --- pages/common/csvkit.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/csvkit.md diff --git a/pages/common/csvkit.md b/pages/common/csvkit.md new file mode 100644 index 000000000..7217715c0 --- /dev/null +++ b/pages/common/csvkit.md @@ -0,0 +1,21 @@ +# csvkit + +> Manipulation toolkit for CSV files. +> See the individual commands: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`. +> More information: . + +- Run a command on a CSV file with a custom delimiter: + +`{{cmd}} -d {{delimiter}} {{filename.csv}}` + +- Run a command on a CSV file with a tab as a delimiter (overrides -d): + +`{{cmd}} -t {{filename.csv}}` + +- Run a command on a CSV file with a custom quote character: + +`{{cmd}} -q {{quote_char}} {{filename.csv}}` + +- Run a command on a CSV file with no header row: + +`{{cmd}} -H {{filename.csv}}`