Forrest logo
back to context overview

csvformat

List of commands for csvformat:

  • csvformat:tldr:0d1fe csvformat: Convert line endings to carriage return (^M) + line feed.
    $ csvformat -M "${\r\n}" ${data-csv}
    try on your machine
    explain this command
  • csvformat:tldr:41aa2 csvformat: Convert delimiters to a custom character.
    $ csvformat -D "${custom_character}" ${data-csv}
    try on your machine
    explain this command
  • csvformat:tldr:895a8 csvformat: Minimize use of quote characters.
    $ csvformat -U 0 ${data-csv}
    try on your machine
    explain this command
  • csvformat:tldr:9c4cb csvformat: Maximize use of quote characters.
    $ csvformat -U 1 ${data-csv}
    try on your machine
    explain this command
  • csvformat:tldr:ae818 csvformat: Convert to a tab-delimited file (TSV).
    $ csvformat -T ${data-csv}
    try on your machine
    explain this command
back to context overview