Hacker News new | ask | show | jobs
by znpy 3663 days ago
A complete list of the courses cited so far in this thread can be obtained via this shell one-liner:

    curl "https://news.ycombinator.com/item?id=11881767" | grep -Po "[a-zA-Z0-9-]*-0\d{2}" | sort | uniq
better:

    curl "https://news.ycombinator.com/item?id=11881767" | grep -Po "[a-zA-Z0-9-]*-0\d{2}" | sort | uniq | awk '{print "# " $0}'

You might might want to update your script :)
1 comments

Done.