Last active
April 5, 2018 19:24
-
-
Save 0i0/afebfdecc3c9e1d2b61c3ddc50b4c461 to your computer and use it in GitHub Desktop.
csving
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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