Easily Split NDJSON files to JSON with PowerShell
Just a quick post to share a script I just had to write to split an NSJSON file out into individual JSON files for processing through a 3rd Party Application. $content = Get-Content “path to NDJSON file goes here” foreach ($data in $content){ $random = -join ((65..90) + (97..122) | Get-Random -Count 25 | % […]