Skip to content

Instantly share code, notes, and snippets.

@psychoticbeef
Created October 28, 2018 08:51
Show Gist options
  • Save psychoticbeef/4e9f498fcd0297a1513f1813d4958a1e to your computer and use it in GitHub Desktop.
Save psychoticbeef/4e9f498fcd0297a1513f1813d4958a1e to your computer and use it in GitHub Desktop.
Get all stackexchange domains for lastpass (to treat them as a single entity)
curl https://stackexchange.com/sites?view=list|awk '/lv-item/{getline; print}'|cut -d '"' -f2|grep -o '[^.]*\.[^.]*$'|sed 's/https:\/\///g'|sort|uniq|tr '\n' ','
# output 10/28/2018: askubuntu.com,mathoverflow.net,serverfault.com,stackapps.com,stackexchange.com,stackoverflow.com,superuser.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment