Skip to content

Instantly share code, notes, and snippets.

View esantonja's full-sized avatar

Enrique Santonja esantonja

  • Travelport
View GitHub Profile
@esantonja
esantonja / install-boost.sh
Created December 6, 2018 17:08 — forked from doubleotoo/install-boost.sh
Quick and dirty script to automate the installation of the Boost C++ libraries
#!/bin/bash -e
#
# Usage: ./install-boost <version: x.xx.x>
: ${PATH:=}
: ${LD_LIBRARY_PATH:=}
if [ "$#" -ne 1 ]; then
echo "Usage: $0 <version: 1.39.0>"
exit 1