![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with wget | vadharah | Shell Programming and Scripting | 2 | 03-29-2008 10:42 PM |
| wget & rapidshare | trolis | Shell Programming and Scripting | 1 | 02-08-2008 05:59 AM |
| Wget Question ... Help! | gseyforth | Shell Programming and Scripting | 0 | 02-04-2008 03:22 PM |
| wget help | djembeplayer | Shell Programming and Scripting | 0 | 04-06-2007 07:33 AM |
| wget to do ftp between different server | vanex | Shell Programming and Scripting | 1 | 11-30-2003 12:23 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
||||
|
wget -r
I have noticed a lot of expensive books appearing
online so I have decided to copy them to CD. I was going to write a program in java to do this, but remembered that wget GNU program some of you guys were talking about. Instead of spending two hours or so writing a program to do this. I am going to download wget and do a one line command, but I want to make sure that one liner is correct or I will recursively use up all my hard drive. The web site is for example http://bb.book.com/somebook So I will run this command Code:
wget -r -Dwebsite.com http://bb.book.com/somebook/ Do you have any suggestions? |
| Forum Sponsor | ||
|
|
|
|||
|
A lot of those books are probably Linux books like
'Advanced Linux Programming' or stuff at tldp.org. What you will end up with is a big directory of files These books are not going away anytime soon. And yes your syntax is correct, but you will create a directory tree full of (possibly) loads of files. You should probably use something like Code:
wget -r -k -l 5 |
|||
| Google The UNIX and Linux Forums |