Hayden Schiff 9 rokov pred
rodič
commit
0db5d3a678
1 zmenil súbory, kde vykonal 16 pridanie a 0 odobranie
  1. 16 0
      pages/common/csvlook.md

+ 16 - 0
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`