Forrest logo
back to context overview

csvkit

List of commands for csvkit:

  • csvkit:tldr:381a1 csvkit: Run a command on a CSV file with no header row.
    $ ${command} -H ${filename-csv}
    try on your machine
    explain this command
  • csvkit:tldr:4c619 csvkit: Run a command on a CSV file with a custom delimiter.
    $ ${command} -d ${delimiter} ${filename-csv}
    try on your machine
    explain this command
  • csvkit:tldr:a06cf csvkit: Run a command on a CSV file with a tab as a delimiter (overrides -d).
    $ ${command} -t ${filename-csv}
    try on your machine
    explain this command
  • csvkit:tldr:c3b1f csvkit: Run a command on a CSV file with a custom quote character.
    $ ${command} -q ${quote_char} ${filename-csv}
    try on your machine
    explain this command
back to context overview