Created
January 6, 2014 13:16
-
-
Save nyango/8282752 to your computer and use it in GitHub Desktop.
Twitterアカウントの画像をぶっこ抜くシェルスクリプト(要インストール:wget, egrep, xargs, awk)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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