DEV Community

Discussion on: CSV Challenge

Collapse
 
thomasrayner profile image
Thomas Rayner

PowerShell to the rescue!

$json = invoke-webrequest 'gist.githubusercontent.com/jorinvo...' | convertfrom-json

$json | select name,creditcard | export-csv "$(get-date -format yyyyMMdd).csv" -NoTypeInformation

Collapse
 
elcotu profile image
Daniel Coturel

Excellent, man