Search:

Type: Posts; User: Si1414; Keyword(s):

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    1,473

    download complete website for offline viewing

    Hi all,

    I am going to download a complete website for offline viewing. I am wondering what is your suggestion? What command is suitable for this?

    Thank you for your help.

    I am using Cygwin.
  2. Replies
    0
    Views
    370

    wget download specific links

    Hello,

    I am using wget to download some pdf files. However, it seems that there is a problem. I am using the following code:


    while read -r link
    do
    http_strip="${link##*/}"
    ...
  3. Re: wget: download if file size does not match any file in folder

    Thank you for your reply. Could you please explain more?
  4. wget: download if file size does not match any file in folder

    I have the download link to pdf files, stored in links.txt

    Some of the pdf files have same content (with different names, but same size). I do not want to download same content several times. That...
  5. Replies
    0
    Views
    622

    check pdf files for errors

    I have several pdf files and want to check whether they are downloaded properly or not. I want to check for any possible unfinished downloads.
    I am using the following code, however the following...
  6. Replies
    1
    Views
    4,951

    Re: wget; connection reset by peer!

    Hint for people who are interested:
    I increased the download speed to 100K and also increased the random wait time between downloads. Apparently, this solves the problem.
  7. Replies
    1
    Views
    4,951

    wget; connection reset by peer!

    I am using the following code to download a list of pdf files:


    wget -i list.txt -A .pdf

    Some pdf files are downloaded properly. However, some pdf files are not downloaded properly. When I...
  8. Replies
    2
    Views
    646

    wget download into multiple folders

    I am using wget to download some files. I am using the following code:


    wget -i list.txt

    and the list.txt is shown below:


    list.txt:
    www.amazon.com/1
  9. Replies
    6
    Views
    8,450

    Re: wget rename output file

    Thank You very much papibe for your help.
  10. Replies
    6
    Views
    8,450

    Re: wget rename output file

    Thank you papibe again for your help. However, it seems that I have a problem here. I am using the following code:


    while read -r link
    do
    output="${link%%.pdf*}".pdf
    wget -nc...
  11. Replies
    6
    Views
    8,450

    Re: wget rename output file

    Thank you papibe for your great help.
    The first code works perfect, however, the second one seems stay in the loop and not save the file. However, the first one solved my problem.


    In the same...
  12. Replies
    6
    Views
    8,450

    wget rename output file

    I am using wget in Cygwin to download some files. The wget code and a sample url are shown below:


    wget -i slist.txt -r -l1 -p

    ...
  13. Replies
    4
    Views
    392

    Re: Manipulate a txt file

    Thanks again. The second code works perfect!
  14. Replies
    5
    Views
    703

    Re: extract links from webpage

    Exactly! Great Help again schragge. I really appreciate that.
  15. Replies
    4
    Views
    392

    Re: Manipulate a txt file

    Thank You. Great help..
    How to put each link in a separate line?
    When I use the following code, it writes all links after each other and not in separate lines:


    (awk -F'"' -vRS='<a[...
  16. Replies
    4
    Views
    392

    Manipulate a txt file

    I have the following txt file:


    source.txt:
    <a href="/gp/product/bold.jsp?tp=&add=B007OZNZG0"><a...
  17. Replies
    5
    Views
    703

    Re: extract links from webpage

    I have grep installed on Cygwin. However, I want to retrieve each links inside "source.txt" and search through the html for"/gp/product" and store the links in "extracted.txt".
    Any suggestions for...
  18. Replies
    5
    Views
    703

    Re: extract links from webpage

    Thank you. Yes, I have it installed on Cygwin.
  19. Replies
    5
    Views
    703

    extract links from webpage

    I have a "source.txt" file which contains list of some URLs. For example:



    source.txt: ...
  20. wget: download specific links of a certain page

    Hi all,

    Is it possible to download specific links with wget. Suppose I want to download all files of "www.example.com/page2", which start with "dl.example.com".
    I can use the following code to...
Results 1 to 20 of 20