https://github.com/archiecobbs/csvprintf
Simple CSV file parser for the UNIX command line
https://github.com/archiecobbs/csvprintf
Last synced: 8 months ago
JSON representation
Simple CSV file parser for the UNIX command line
- Host: GitHub
- URL: https://github.com/archiecobbs/csvprintf
- Owner: archiecobbs
- License: apache-2.0
- Created: 2015-04-17T20:53:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T17:17:52.000Z (almost 2 years ago)
- Last Synced: 2024-04-16T10:35:41.529Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 181 KB
- Stars: 38
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README
- Changelog: CHANGES
- License: COPYING
Awesome Lists containing this project
- awesomeCSV - csvprintf - UNIX command line utility for parsing and formatting output based on CSV files. (Tools)
README
csvprintf is a simple UNIX command line utility for parsing CSV files.
cvsprintf works just like the printf(1) command line utility. You
supply a printf(1) format string on the command line and each record
in the CSV file is formatted accordingly. Each format specifier in
the format string contains a column accessor to specify which CSV
column to use, so for example '%3$d' would format the third column
as a decimal value.
csvprintf can also convert CSV files into XML and JSON documents
and Bash variable assignments suitable for eval(1).
See INSTALL for installation instructions.
See COPYING for license.
See CHANGES for change history.
Enjoy!