I got a big json file with text to be modify in each value. If we look a the first entry, it looks like :
$ cat description6fr.json | jq '.[0].fr'
Something\nSomethings\n\nSomething\n\nSomething
How to cut everything before the first \n\n ? I did try many things with sed and awk, but help is welcome. Thanks!