Skip to content

Instantly share code, notes, and snippets.

@pjullah
Created June 12, 2017 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pjullah/57759c4943c64a0a786537c1d6c85e5b to your computer and use it in GitHub Desktop.
Save pjullah/57759c4943c64a0a786537c1d6c85e5b to your computer and use it in GitHub Desktop.
Generate some CSV data for testing
for i in {1..999}; do printf '%s\n' "row ${i}" "2011-03-11" ${i} true | paste -sd "," - ; done > data.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment