ファイルをダウンロード
$ wget http://example.com/
ダウンロードしたファイルの名前を指定する場合は-O
オプションを使います。
$ wget -O example.txt http://example.com/
ダウンロード速度を制限したい場合は--limit-rate
オプションを使います。
$ wget --limit-rate=100k http://example.com/
UserAgentを変更してアクセスしたい場合は--user-agent
オプションを使います。
$ wget --user-agent="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)" http://example.com/