Skip to content

Instantly share code, notes, and snippets.

View richardpq's full-sized avatar

Richard Perez richardpq

View GitHub Profile
@fideloper
fideloper / update_curl.sh
Last active November 3, 2025 01:16
Update curl on Ubuntu 14.04
#! /usr/bin/env bash
# Install any build dependencies needed for curl
sudo apt-get build-dep curl
# Get latest (as of Feb 25, 2016) libcurl
mkdir ~/curl
cd ~/curl
wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2
tar -xvjf curl-7.50.2.tar.bz2