greycat 1128541405 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. yitz_ 1249057573 forget yitz_ 1249057576 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate simple CSV files with awk -F, but if the file has escaped commas or commas in strings, you need something different. SiegeX 1251697096 forget SiegeX 1251697284 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate simple CSV files with awk -F, but if the file has escaped commas or commas in strings you need a more esoteric field separator such as -F'", "|^"|"$' SiegeX 1251697345 forget SiegeX 1251697380 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate simple CSV files with awk -F',' but if the file has escaped commas or commas in strings you need a more esoteric field separator such as -F'", "|^"|"$' irc2samus 1308766815 forget irc2samus 1308766829 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate *simple* CSV files with ''IFS=, read -a fields'' for anything else use a parser (such as Python's CSV module: ) mattcen 1371017986 forget mattcen 1371017990 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate *simple* CSV files with ''IFS=, read -a fields'' for anything else use a parser (such as Python's CSV module: or the 'csvtool' command utility) yitz_ 1381085441 forget yitz_ 1381085447 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate *simple* CSV files with ''IFS=, read -a fields'' for anything else use a parser (such as.. yitz_ 1381085461 forget yitz_ 1381085465 learn Comma Separated Values. A text file in which each line is a "record", and fields within each record are delimited by commas. You can manipulate *simple* CSV files with ''IFS=, read -a fields'' for anything else use a parser (such as Python's CSV module: or the 'csvtool' or 'csvkit' command utility) lhunath 1422727998 forget lhunath 1422728000 learn A csv file contains "Comma Separated Values". It represents records as lines and fields delimited by commas (though the delimiter can vary). Very simple CSV files can be parsed using a ''while IFS=, read -a fields'' loop. For more complete support, see , or the csvtool / csvkit commands. mknod 1529844247 forget mknod 1529844259 learn A CSV file contains "Comma Separated Values". It stores data as records -- or rows -- made of fields, usually delimited by commas. Although documented in RFC4180, there is no standard and thus many flavors exist. CSV is NOT about "lines". Don't use a regular line-based unix utility such as grep or sed to parse a CSV file. Any attempt to do so is broken. For more complete support, see the csvtool / csvkit commands or use a better suited language l mknod 1529844271 forget mknod 1529844295 learn A CSV file contains "Comma Separated Values". It stores data as records made of fields, usually delimited by commas. Although documented in RFC4180, there is no standard and thus many flavors exist. CSV is NOT about "lines". Don't use a regular line-based unix utility such as grep or sed to parse a CSV file. Any attempt to do so is broken. For more complete support, see the csvtool / csvkit commands or use a better suited language like Perl or Py mknod 1529864673 forget mknod 1529864688 learn A CSV file contains "Comma Separated Values". It stores data as records made of fields, usually delimited by commas. Although documented in RFC4180, there is no standard and thus many flavors exist. CSV is NOT about "lines". Don't use a regular line-based unix utility such as grep or sed to parse a CSV file. Any attempt to do so is broken. mknod 1529885755 forget mknod 1529885762 learn Comma Separated Values; a format that stores data as records made of fields, usually comma-delimited. Documented by RFC4180, though there is no one true standard. Bash, sed, grep, cut, etc. are NOT suited to parse it. Consider using csvtool, csvkit or any language with a formal parser, such as csv in Python, or Text::CSV in Perl. kerframil 1534116005 forget kerframil 1534116010 learn Comma Separated Values: a format that stores data as records composed of fields, usually comma-delimited. Documented by RFC4180, though implementations vary. Utilities such as sed, grep and cut are not suitable for parsing it. Instead, use csvline (from bashlib), csvtool, csvkit or any language with a formal parser, such as csv in Python, or Text::CSV in Perl. kerframil 1534118157 forget kerframil 1534118163 learn Comma Separated Values: a format that stores data as records composed of fields, usually comma-delimited. Documented by RFC4180, though implementations vary. Utilities such as sed, grep and cut are not suitable for parsing it. Instead, use csvline (from http://to.lhunath.com/bashlib), csvtool, csvkit, csv (Python), Text::CSV (Perl) etc. tirnanog 1660814702 forget tirnanog 1660814713 learn Comma Separated Values: a format that stores data as records composed of fields, usually comma-delimited. Documented by RFC4180, though implementations vary. Utilities such as sed, grep and cut are not suitable for parsing it. Instead, use xsv or csvkit, or a library such as csvline (bashlib), csv (Python) or Text::CSV (Perl). emanuele6 1679712954 forget emanuele6 1679712989 learn Comma Separated Values: a format that stores data as records composed of fields, usually comma-delimited. Documented by RFC4180, though implementations vary. Utilities such as sed, grep and cut are not suitable for parsing it. Instead, use xsv or csvkit, or a library such as csv (Python) or Text::CSV (Perl).