Remove .txt extension - csvtofsv - Convert CSV to FSV (`fs' (0x1c) as FS and `r… | |
hg clone https://bitbucket.org/iamleot/csvtofsv | |
Log | |
Files | |
Refs | |
README | |
--- | |
changeset d3bdfb654f0505b6da0c9131d79875cfc5c3c037 | |
parent 7925cee5712147984b57377fb889f86af467191c | |
Author: Leonardo Taccari <[email protected]> | |
Date: Wed, 26 Jun 2019 02:27:01 | |
Remove .txt extension | |
Diffstat: | |
README | 19 +++++++++++++++++++ | |
README.txt | 19 ------------------- | |
2 files changed, 19 insertions(+), 19 deletions(-) | |
--- | |
diff -r 7925cee57121 -r d3bdfb654f05 README | |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 | |
+++ b/README Wed Jun 26 02:27:01 2019 +0200 | |
@@ -0,0 +1,19 @@ | |
+csvtofsv reads a CSV from standard input and convert it to a FSV with a | |
+`fs' ASCII character (034 in octal, 28 in decimal, 0x1c in hexadecimal) | |
+as field separator and `rs' ASCII character (036 in octal, 30 in | |
+decimal, 0x1e in hexadecimal) as record separator. | |
+ | |
+All `\r' are ignored and all quotes are removed from the quoted fields. | |
+ | |
+The CSV parsing try to follows as much as possible RFC 4180 [1]. | |
+ | |
+ | |
+csvtofsv output can be processed via AWK by setting FS and RS as follow: | |
+ | |
+ % awk 'BEGIN { FS = "\034"; RS = "\036" } { ... }' | |
+ | |
+ | |
+References | |
+ | |
+ [1] Shafranovich, Y., "Common Format and MIME Type for Comma-Separated | |
+ Values (CSV) Files", RFC 4180, October 2005 | |
diff -r 7925cee57121 -r d3bdfb654f05 README.txt | |
--- a/README.txt Wed Jun 26 02:24:34 2019 +0200 | |
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000 | |
@@ -1,19 +0,0 @@ | |
-csvtofsv reads a CSV from standard input and convert it to a FSV with a | |
-`fs' ASCII character (034 in octal, 28 in decimal, 0x1c in hexadecimal) | |
-as field separator and `rs' ASCII character (036 in octal, 30 in | |
-decimal, 0x1e in hexadecimal) as record separator. | |
- | |
-All `\r' are ignored and all quotes are removed from the quoted fields. | |
- | |
-The CSV parsing try to follows as much as possible RFC 4180 [1]. | |
- | |
- | |
-csvtofsv output can be processed via AWK by setting FS and RS as follow: | |
- | |
- % awk 'BEGIN { FS = "\034"; RS = "\036" } { ... }' | |
- | |
- | |
-References | |
- | |
- [1] Shafranovich, Y., "Common Format and MIME Type for Comma-Separated | |
- Values (CSV) Files", RFC 4180, October 2005 |