I need backup my blog that hosting on chinaunix. opening every page and saving as local file are boring, so I get the copy through Unix tools called wget.

For more information about wget, please click: wget的详解

 

First, export environment variable:

    export ftp_proxy=proxy_ip:proxy:port

And then create the file containing downloading url line by line:

    http://blog.chinaunix.net/u/11680/article_0_1.html
    http://blog.chinaunix.net/u/11680/article_0_2.html
    http://blog.chinaunix.net/u/11680/article_0_3.html
    http://blog.chinaunix.net/u/11680/article_0_4.html

Last, execute the command as:

    wget -m -c -k -L -p --proxy-user=username --proxy-passwd=password -i import_url.txt

 

相关文章:

  • 2022-12-23
  • 2021-12-07
  • 2021-07-11
  • 2021-05-30
  • 2021-11-04
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-31
  • 2021-11-28
  • 2021-11-26
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案