Advertisement
yuch4n

onepan

Jan 10th, 2012
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.32 KB | None | 0 0
  1. # ワンパンマンの画像ファイルをダウンロードし、1話毎にzip圧縮するワンライナー
  2. # (ダウンロードする範囲は `seq 1 81` 部分で指定)
  3.  
  4. mkdir one$$ && cd $_ && for I in `seq 1 81`; do wget -nd -p -Ajpg http://galaxyheavyblow.web.fc2.com/$I.html && zip $I.zip *.jpg && rm -f *.jpg; done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement