美文网首页
2020-09-23 wget下载需要用户名密码的ftp链接

2020-09-23 wget下载需要用户名密码的ftp链接

作者: Joyner2018 | 来源:发表于2020-09-23 13:03 被阅读0次

    wget -c -r -np -k -L -p --ftp-user=admin --ftp-password=admin ftp://192.168.9.218/zhiwen.wang/ftp/* .

    -c --continue 断点续传
    -r --recursive specify recursive download
    -np, --no-parent don't ascend to the parent directory 不要上升到父目录
    -k, --convert-links make links in downloaded HTML or CSS point to local files 使链接在下载的HTML或CSS指向本地文件
    -L, --relative follow relative links only
    -p, --page-requisites get all images, etc. needed to display HTML page
    --ftp-user 用户名
    --ftp-password 密码

    相关文章

      网友评论

          本文标题:2020-09-23 wget下载需要用户名密码的ftp链接

          本文链接:https://www.haomeiwen.com/subject/bbznyktx.html