Skip to content

Instantly share code, notes, and snippets.

@ayoayco
Created March 26, 2017 16:32
Show Gist options
  • Save ayoayco/6d5395a42d2793d7c2644a9f1e1ee3bb to your computer and use it in GitHub Desktop.
Save ayoayco/6d5395a42d2793d7c2644a9f1e1ee3bb to your computer and use it in GitHub Desktop.
convert all csv to json
for %%f in (*.csv) do (
:: requires node module csvtojson
:: npm install --global csvtojson
csvtojson "%%~nf.csv" > "%%~nf.json"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment