|
|
|
|
|
by ColinWright
2457 days ago
|
|
For those complaining that they need it sorted by date: curl https://raw.githubusercontent.com/codelani/codelani/master/langs.csv \
| awk -F "," '{print $NF, $0}' \
| sort -n \
| sed "s/^[^ ]* //" \
| less
This will fetch the CSV, copy the date to the front, sort it, then remove the date.There are a lot of entries that don't have dates. If you want to remove them, pipe the result through: grep -v ",$"
|
|