Linux_shell——第5章 一团乱麻?没这回事

第5章 一团乱麻?没这回事

5.1 入门

5.2 Web页面下载

        1.
            $wget URL...

        2.指定输出文件名(-o)
            $wget -o filename URL

        3.指定重复次数(-t)
            $wget -t n URL

        4.限速
            $wget --limit-rate 20K URL

        5.限额
            $wget -Q URL
            $wget --quta URL

        6.断点续传
            $wget -c URL

        7.镜像
            $wget --mirror URL  

5.3 以纯文本形式下载网页

            $lynx URL -dump > file.txt 

5.4 curl入门

        1.curl URL
            --silent

        2.指定输出
            $curl URL -O file

        3.断点续传 
            $curl -C -URL

        4.只打印响应头部信息
            $curl -I URL

5.5 从命令行访问Gmail

5.6 解析网站数据

5.7 图片抓取器及下载工具

5.8 网页生成相册

5.9

你可能感兴趣的:(linux,shell)