Skip to content

Instantly share code, notes, and snippets.

@matthewhartman
Last active May 18, 2021 01:26
Show Gist options
  • Save matthewhartman/3ad38ce92794c7ba5bf7fea93cc267f9 to your computer and use it in GitHub Desktop.
Save matthewhartman/3ad38ce92794c7ba5bf7fea93cc267f9 to your computer and use it in GitHub Desktop.

Revisions

  1. matthewhartman revised this gist May 18, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-latest-curl-on-linux.markdown
    Original file line number Diff line number Diff line change
    @@ -5,7 +5,7 @@ https://curl.se/download.html
    ```bash
    tar xzvf curl-7.68.0.tar.gz
    cd curl-7.68.0
    ./configure
    ./configure --with-ssl
    make
    sudo make install
    ```
  2. matthewhartman created this gist Jan 12, 2021.
    11 changes: 11 additions & 0 deletions install-latest-curl-on-linux.markdown
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    Download CURL from the following

    https://curl.se/download.html

    ```bash
    tar xzvf curl-7.68.0.tar.gz
    cd curl-7.68.0
    ./configure
    make
    sudo make install
    ```