diff options
author | B. Watson <yalhcru@gmail.com> | 2020-11-20 15:22:12 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-11-22 01:14:20 +0700 |
commit | afb285cb6084f7b03c7b724d8550995764ef231b (patch) | |
tree | f70bf9bfc08e7549be5c24651755b9335482b017 /office/uncsv/README | |
parent | a062342b4329f5fa2a100b04bce36a9aeae398be (diff) |
office/uncsv: Added (convert to or from CSV streams)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/uncsv/README')
-rw-r--r-- | office/uncsv/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/office/uncsv/README b/office/uncsv/README new file mode 100644 index 000000000000..ae0a2348606d --- /dev/null +++ b/office/uncsv/README @@ -0,0 +1,11 @@ +uncsv (convert to or from CSV streams) + +uncsv is a filter command converting the lines of a CSV file into +non-escaped, non-quoted delimited file (pipe by default). This program +will error out if it encounters a character matching the delimiter, it +will also replace the carriage return and new-line characters found in +quoted values allowing you to use awk to play with your CSVs. + +csv is the opposite of this command. It takes an unquoted stream of +values, separated by the delimiter of your choice (default: pipe '|') +and produces a "standard" CSV file. |