Skip to content

Instantly share code, notes, and snippets.

@stknohg
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stknohg/9834433 to your computer and use it in GitHub Desktop.
Save stknohg/9834433 to your computer and use it in GitHub Desktop.
ゆゆ式ドラマCD一般発売記念アイコン327個を一括ダウンロードするコマンド
#
# ゆゆ式ドラマCD一般発売記念アイコン327個を一括ダウンロードするコマンド (PowerShell版)
#
# @guitarrapc_techさんに教えて頂きました。
# https://twitter.com/guitarrapc_tech/status/449560832687370240
#
# PowerShell3.0以上で動作します。
#
1..327 | %{$x="ys_$_.png";irm http://www.yuyushiki.net/core_sys/images/main/cont/special/ys_ico/$x -Outfile .\$x}
#
# ゆゆ式ドラマCD一般発売記念アイコン327個を一括ダウンロードするコマンド
#
# curlで327個のアイコンを一括で取得します。
# 濫用は控えて公式の迷惑にならない様にして下さい。
#
curl -O http://www.yuyushiki.net/core_sys/images/main/cont/special/ys_ico/ys_[1-327].png
#
# おまけ
# これまでのTwitterアイコンをダウンロードするコマンド
#
curl -O http://www.yuyushiki.net/core_sys/images/contents/00000015/block/00000010/000000[15-21].png
curl -O http://www.yuyushiki.net/core_sys/images/contents/00000023/block/00000065/00000[086-100].png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment