tools

    • Awk
    • Awscli
    • Bash
    • Brew
    • Curl
    • Git
    • Jq
    • Mysql
    • Openssl
    • Psql
    • Python
    • SSH
    • Zip

    Curl

      • return headers only
      • download a file using its remote name
      • download a file and change its name
      • Resources

    curl#

    return headers only#

    curl -I http://foo.com

    download a file using its remote name#

    curl -O http://foo.com/bar.txt

    download a file and change its name#

    curl http://foo.com/bar.txt -o baz.txt

    Resources#

    • man page
    • The Art Of Scripting HTTP Requests Using Curl
    • Everything curl
    Backward Brew Git Forward
      • return headers only
      • download a file using its remote name
      • download a file and change its name
      • Resources