From 8900a6f9ea9b79302be2fa0c5e91a03d42cf1358 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sat, 20 May 2023 06:44:35 +0530 Subject: [PATCH] csvkit: update page (#10238) --- pages/common/csvkit.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/csvkit.md b/pages/common/csvkit.md index 7217715c0..97c0ec31c 100644 --- a/pages/common/csvkit.md +++ b/pages/common/csvkit.md @@ -1,21 +1,21 @@ # csvkit > Manipulation toolkit for CSV files. -> See the individual commands: `csvclean`, `csvcut`, `csvformat`, `csvgrep`, `csvlook`, `csvpy`, `csvsort`, `csvstat`. +> See also: `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}}` +`{{command}} -d {{delimiter}} {{path/to/file.csv}}` - Run a command on a CSV file with a tab as a delimiter (overrides -d): -`{{cmd}} -t {{filename.csv}}` +`{{command}} -t {{path/to/file.csv}}` - Run a command on a CSV file with a custom quote character: -`{{cmd}} -q {{quote_char}} {{filename.csv}}` +`{{command}} -q {{quote_char}} {{path/to/file.csv}}` - Run a command on a CSV file with no header row: -`{{cmd}} -H {{filename.csv}}` +`{{command}} -H {{path/to/file.csv}}`