mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 21:15:26 +02:00
added csvlook.md
This commit is contained in:
parent
588482fc78
commit
0db5d3a678
1 changed files with 16 additions and 0 deletions
16
pages/common/csvlook.md
Normal file
16
pages/common/csvlook.md
Normal file
|
@ -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`
|
Loading…
Add table
Reference in a new issue