Skip to content

Instantly share code, notes, and snippets.

@kurap
Created November 13, 2013 04:21
Show Gist options
  • Save kurap/7443644 to your computer and use it in GitHub Desktop.
Save kurap/7443644 to your computer and use it in GitHub Desktop.
#==============================================================================
##
## wget 使い方
##
#==============================================================================
##### 再帰的ダウンロード
wget -r -k http://xxx.com
## HTML や CSS 中のリンクをローカルを指すように変更する
wget -k http://xxx.com
## レジューム
wget -c http://xxx.com
## ファイルに記述された URL を自動取得してダウンロード
wget -i http://xxx.com
## サーバ証明書を検証しない
wget --no-check-certificate https://xxx.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment