✨
ysv
  • ysv
  • Installation
  • Usage
  • Configuration format
  • Configuration Language
    • Basics
    • input
    • Constants
    • String transformations
    • Date & time
  • Technology Choices
Powered by GitBook
On this page

Was this helpful?

Usage

How to run

ysv is a command line utility reading CSV data from standard input and printing the result to standard output. Thus, it should be called like this (in bash):

$ cat raw_input.csv | ysv vehicles.yaml > vehicles.csv

Errors

If ysv encounters any errors while processing the data, they are printed to stderr. You can redirect them to a file:

cat input.csv | ysv config.yaml > output.csv 2>errors.log

PreviousInstallationNextConfiguration format

Last updated 4 years ago

Was this helpful?