Remove .txt extension - csvtofsv - Convert CSV to FSV (`fs' (0x1c) as FS and `rs' (0x1e) as RS)
(HTM) hg clone https://bitbucket.org/iamleot/csvtofsv
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) changeset d3bdfb654f0505b6da0c9131d79875cfc5c3c037
(DIR) parent 7925cee5712147984b57377fb889f86af467191c
(HTM) Author: Leonardo Taccari <iamleot@gmail.com>
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