fivethirtyeight / data

Data and code behind the articles and graphics at FiveThirtyEight
https://data.fivethirtyeight.com/
Creative Commons Attribution 4.0 International
16.78k stars 10.95k forks source link

Fix newlines in all csvs #319

Closed jayb closed 1 year ago

jayb commented 1 year ago

Fixed with:

find . -name '*.csv' -exec file '{}' \; | grep 'CR line terminators' | cut -d ':' -f1 | xargs mac2unix

per the comment in https://github.com/fivethirtyeight/data/pull/287.