LoginSignup
0
0

More than 3 years have passed since last update.

twitterのメディアダウンロードワンライナー

Posted at

twitterの画像を一括ダウンロードする

どこか好きなtwitterのメディアアカウントに対して、
画像を抜き出す。大量にダウンロードされる場合があるから気をつけてね

curl -s https://twitter.com/<好きなtwitter>/media | egrep -o "img data-aria-label-part(.+)" | egrep -o 'src="(.+)" ' | sed -e 's/"//g' | sed -e 's/src=//' | while read line; do echo $line; curl -O $line;  done
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0