Last active
May 19, 2016 07:54
-
-
Save bse666/4e1ff570cfcb8974d0b7 to your computer and use it in GitHub Desktop.
install tmux from git in ubuntu (tested in 15.04)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
tdir=`mktemp -d` | |
cd $tdir | |
sudo apt-get install -y --force-yes libevent-dev libncurses-dev pkg-config autoconf | |
git clone https://github.com/tmux/tmux | |
cd tmux | |
autoreconf -fis | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment