1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 16:53:10 +02:00

in2csv: better example for piping / -f flag

This commit is contained in:
Hayden Schiff 2016-01-24 02:10:38 -05:00
parent 4ddf748875
commit 5676e5892d

View file

@ -15,6 +15,6 @@
`in2csv --sheet={{sheet_name}} {{data.xlsx}}` `in2csv --sheet={{sheet_name}} {{data.xlsx}}`
- Fetch csvkit's open issues from GitHub's JSON API, and convert them to CSV: - Pipe a JSON file to in2csv:
`curl https://api.github.com/repos/onyxfish/csvkit/issues?state=open | in2csv -f json > issues.csv` `cat {{data.json}} | in2csv -f json > {{data.csv}}`