Skip to content

Instantly share code, notes, and snippets.

@421p
Last active July 5, 2018 11:11
Show Gist options
  • Save 421p/cb89091af8fd1904898eeb3432052513 to your computer and use it in GitHub Desktop.
Save 421p/cb89091af8fd1904898eeb3432052513 to your computer and use it in GitHub Desktop.
Compilling nano text editor from source
#! /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
@421p
Copy link
Author

421p commented Jul 5, 2018

curl -s https://gist.githubusercontent.com/421p/cb89091af8fd1904898eeb3432052513/raw/install_nano.sh | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment