Skip to content

Instantly share code, notes, and snippets.

@nikukyugamer
Last active October 30, 2017 01:32
Show Gist options
  • Save nikukyugamer/dd546b1cee2ae3446362bc52081839be to your computer and use it in GitHub Desktop.
Save nikukyugamer/dd546b1cee2ae3446362bc52081839be to your computer and use it in GitHub Desktop.
how to install micro, which is a modern and intuitive terminal-based text editor
#!/bin/bash
# https://micro-editor.github.io/
wget https://github.com/zyedidia/micro/releases/download/v1.3.3/micro-1.3.3-linux64.tar.gz
tar zxvf micro-1.3.3-linux64.tar.gz
cd micro-1.3.3
sudo cp micro /usr/local/bin
cd ..
rm -R micro-1.3.3
rm micro-1.3.3-linux64.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment