From 1ee2283f37835ac458f1186ecb33d118fc66aef7 Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Thu, 21 Jan 2016 23:53:32 -0500 Subject: [PATCH 1/2] x_x: add page --- pages/common/x_x.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/common/x_x.md diff --git a/pages/common/x_x.md b/pages/common/x_x.md new file mode 100644 index 000000000..6c055d570 --- /dev/null +++ b/pages/common/x_x.md @@ -0,0 +1,15 @@ +# x_x + +> View Excel and CSV files from the command-line. + +- View an XLSX or CSV file: + +`x_x {{file.ext}}` + +- View an XLSX or CSV file, using the first row as table headers: + +`x_x -h {{0}} {{file.ext}}` + +- View a CSV file with unconventional delimiters: + +`x_x --delimiter={{';'}} --quotechar={{'|'}} {{file.csv}} From 1a7f339019a0645ce34f9650cf758afda396b976 Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Fri, 22 Jan 2016 00:01:07 -0500 Subject: [PATCH 2/2] x_x: syntax error fix --- pages/common/x_x.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/x_x.md b/pages/common/x_x.md index 6c055d570..68f1f0575 100644 --- a/pages/common/x_x.md +++ b/pages/common/x_x.md @@ -12,4 +12,4 @@ - View a CSV file with unconventional delimiters: -`x_x --delimiter={{';'}} --quotechar={{'|'}} {{file.csv}} +`x_x --delimiter={{';'}} --quotechar={{'|'}} {{file.csv}}`