minor edits to README
This commit is contained in:
22
README.md
22
README.md
@@ -18,17 +18,17 @@ License along with this program. If not, see
|
|||||||
|
|
||||||
## Executive Summary
|
## Executive Summary
|
||||||
|
|
||||||
These are quick and dirty python scripts I threw together to
|
These are quick and dirty Python scripts I threw together to
|
||||||
facilitate manipulating CSV files with AWK. It is heavily inspired by
|
facilitate manipulating CSV files with AWK. They are heavily inspired
|
||||||
[csvquote](https://github.com/adamgordonbell/csvquote). I just didn't
|
by [csvquote](https://github.com/adamgordonbell/csvquote). I just
|
||||||
want to have to install go on a machine to use it. I wrote this one
|
didn't want to have to install go on a machine to use it. I wrote
|
||||||
in Python because that's very likely to already be present on most any
|
this one in Python because that's very likely to already be present on
|
||||||
modern UNIX-ey system.
|
most any modern UNIX-ey system.
|
||||||
|
|
||||||
It provides two scripts: `csv-reader.py` and `csv-writer.py` which
|
It provides two scripts: `csv-reader.py` and `csv-writer.py` which
|
||||||
read and write CSV files respectively. Both read from standard input
|
read and write CSV files respectively (converting to and from a
|
||||||
and write to standard output. The format they convert the CSV to/from
|
simpler format). Both read from standard input and write to standard
|
||||||
works as follows:
|
output. The format they convert the CSV to/from works as follows:
|
||||||
|
|
||||||
- Each row is represented as a single line of text.
|
- Each row is represented as a single line of text.
|
||||||
- Cells are separated by tab characters.
|
- Cells are separated by tab characters.
|
||||||
@@ -41,6 +41,6 @@ works as follows:
|
|||||||
|
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
I haven't seriously looked at Python in over a decade and I hacked it
|
I haven't seriously looked at Python in over a decade and I hacked
|
||||||
together in like 30 minutes. Don't go looking for the most well
|
this together in like 30 minutes. Don't go looking for the most well
|
||||||
put-together code you've ever seen. It gets the job done though.
|
put-together code you've ever seen. It gets the job done though.
|
||||||
|
|||||||
Reference in New Issue
Block a user