https://github.com/melezhik/csvtotable
Sparrow wrapper for csvtotable
https://github.com/melezhik/csvtotable
sparrow
Last synced: about 1 month ago
JSON representation
Sparrow wrapper for csvtotable
- Host: GitHub
- URL: https://github.com/melezhik/csvtotable
- Owner: melezhik
- Created: 2017-07-07T12:49:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-07T13:03:11.000Z (almost 8 years ago)
- Last Synced: 2025-04-10T01:17:55.506Z (about 1 month ago)
- Topics: sparrow
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SYNOPSIS
Wrapper for [csvtotable](https://github.com/vividvilla/csvtotable) utility.
# INSTALL
$ sparrow plg install csvtotable
# USAGE
Basic usage:
$ sparrow plg run --param in= --param out=
For example:
$ sparrow plg run csvtotable --param in=/tmp/goog.csv --param out=/tmp/goog.html
Other options.
- Set csv delimiter
--param delimiter=";"
- Set table caption
--param caption="my table"
- Set quote character
--param quotechar='/'
Automation:
$ sparrow project create utils
$ sparrow task add utils csv-to-html csvtotable
$ sparrow task ini utils/csv-to-html
---
in: /tmp/goog.csv
out: /tmp/goog.html
caption: my table$ sparrow task run utils/csv-to-html
# Author
- Csvtotable's author - [Vivek R](https://github.com/vividvilla)
- The plugin maintainer - Alexey Melezhik