Last active
July 5, 2018 11:11
-
-
Save 421p/cb89091af8fd1904898eeb3432052513 to your computer and use it in GitHub Desktop.
Compilling nano text editor from source
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
#! /usr/bin/env bash | |
sudo apt-get install -y libncursesw5-dev autopoint texinfo autoconf dh-autoconf | |
cd /tmp | |
git clone git://git.savannah.gnu.org/nano.git | |
cd nano | |
./autogen.sh | |
./configure | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
curl -s https://gist.githubusercontent.com/421p/cb89091af8fd1904898eeb3432052513/raw/install_nano.sh | bash