Skip to content

Instantly share code, notes, and snippets.

@0i0
Last active April 5, 2018 19:24
Show Gist options
  • Save 0i0/afebfdecc3c9e1d2b61c3ddc50b4c461 to your computer and use it in GitHub Desktop.
Save 0i0/afebfdecc3c9e1d2b61c3ddc50b4c461 to your computer and use it in GitHub Desktop.
csving
cat *.csv > combined.csv
cat combined.csv | awk '!a[$0]++' > c-no-dups.csv
python sort.py
cat c-no-dups-sorted.csv | tail -n 350 > topsort350.csv
cat topsort350.csv | awk -F, '{print "https://raw.githubusercontent.com/"substr($2,0,length($2))"/master/README.md"}' > readme.links
python downloadraw.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment