Skip to content

Instantly share code, notes, and snippets.

@egemenyildiz
Last active October 25, 2017 12:10
Show Gist options
  • Save egemenyildiz/d488e258fe150875436b7f9919f59d24 to your computer and use it in GitHub Desktop.
Save egemenyildiz/d488e258fe150875436b7f9919f59d24 to your computer and use it in GitHub Desktop.
eksi topics
#!/bin/bash
curl -sL www.eksisozluk.com | grep -A1000 "topic-list" | grep -B1000 -m1 "</ul>" | grep -e "href" | sed 's/\(href.*popular.>\)//g' | sed 's/\(<\/a>\)//g' | sed -e 's/<[^>]*>//g' | sed 's/^ *//' | awk '{ print $NF,$0 }' | sort -k1,1 -nr | cut -f2- -d' '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment