Skip to content

Instantly share code, notes, and snippets.

@oosugi20
Created February 19, 2012 00:48
Show Gist options
  • Save oosugi20/1861477 to your computer and use it in GitHub Desktop.
Save oosugi20/1861477 to your computer and use it in GitHub Desktop.
URLリストからファイル(画像やCSSも含めて)をダウンロードする
#!/bin/sh
for i in "http://www.example.com/index.html" "http://www.example.com/hoge/hoge.html"
do
wget -p -nc -nv $i
done
@oosugi20
Copy link
Author

wget : 指定したファイルをダウンロードする
-p : 画像やCSSなど表示するのに必要なファイルもダウンロードする
-nc : ファイルがローカルに存在する場合はダウンロードしない
-nv : 出力されるログを短くする

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment