Last active
August 29, 2015 13:57
-
-
Save stknohg/9834433 to your computer and use it in GitHub Desktop.
ゆゆ式ドラマCD一般発売記念アイコン327個を一括ダウンロードするコマンド
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
# | |
# ゆゆ式ドラマ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} |
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
# | |
# ゆゆ式ドラマ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