Results 1 to 5 of 5
Heya guys.
I'm trying to download all the data under this directory, using wget:
*ttp://gd2.mlb.***/components/game/mlb/year_2010/
I would like to achieve this using wget, and from what I've read it should ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-02-2010 #1Just Joined!
- Join Date
- Jul 2010
- Posts
- 2
Help a Noob use WGET
Heya guys.
I'm trying to download all the data under this directory, using wget:
*ttp://gd2.mlb.***/components/game/mlb/year_2010/
I would like to achieve this using wget, and from what I've read it should be possible using the --recursive flag. Unfortunately, I've had no luck so far.
The only files that get downloaded are robots.txt and index.html (which doesn't actually exist on the server), but wget does not follow any of the links on the directory list.
The code I've been using is:
Please help me out guys.Code:wget -r *ttp://gd2.mlb.***/components/game/mlb/year_2010/
CheersLast edited by odinswand; 07-02-2010 at 04:45 AM. Reason: Adjusting URLs..
- 07-02-2010 #2
Hi & welcome odinswand!
I can suggest typing in terminal:
$ man wget
nujinini
Linux User #489667
- 07-02-2010 #3Just Joined!
- Join Date
- Jul 2010
- Posts
- 2
- 07-04-2010 #4
It is possible that the server or application running there has identified your wget client as a non-browser, and is returning a subset or alternate content, to prevent site copying. You may be able to spoof the server by using some wget options, such as --user-agent and --random-wait.
It is also possible that the website you see in your browser cotains a lot of Javascript and/or Java applet content that wget is unable to cope with.
--- rod.Stuff happens. Then stays happened.
- 07-09-2010 #5Just Joined!
- Join Date
- Jul 2010
- Posts
- 11
Try this?
wget *ttp://gd2.mlb.***/components/game/mlb/year_2010/*


Reply With Quote

