Skip to content

Instantly share code, notes, and snippets.

View SeunghoonBaek's full-sized avatar

Baek SeunghoonBaek

  • LINE Corporation
  • Republic of Korea
View GitHub Profile
#!/bin/bash
## download path
dpath=${HOME}/Downloads
cd ${dpath}
## brew (take a long time)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
## wget
@SeunghoonBaek
SeunghoonBaek / gist:32762b3b02adc3cb86c11669ed76c2f4
Created August 3, 2018 10:48 — forked from tkuchiki/gist:543e277a2f7221a7833a
install autoconf 2.69 for CentOS 6
curl -L -O http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
tar zxf autoconf-2.69.tar.gz
cd autoconf-2.69
yum install -y openssl-devel
./configure
make && make install