Skip to content

Instantly share code, notes, and snippets.

@nyango
Created January 6, 2014 13:16
Show Gist options
  • Save nyango/8282752 to your computer and use it in GitHub Desktop.
Save nyango/8282752 to your computer and use it in GitHub Desktop.
Twitterアカウントの画像をぶっこ抜くシェルスクリプト(要インストール:wget, egrep, xargs, awk)
wget -q -O - https://twitter.com/accountname/media | egrep "https\S\/\/\S+jpg\"" | awk -F"\"" '{print $2}' | xargs wget -i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment