meetdestiny / one-liners

One liner powerful utility tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

one-liners

#Remove newlines within quotes from csv files. Helps streaming large csvs instead of loading and parsing.

awk -v RS='"' 'NR % 2 == 0 { gsub(/[\r\n]+/, " ") } { printf("%s%s", $0, RT) }'

About

One liner powerful utility tools