Skip to content

Instantly share code, notes, and snippets.

@alex-endfinger
Created December 22, 2011 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alex-endfinger/1510908 to your computer and use it in GitHub Desktop.
Save alex-endfinger/1510908 to your computer and use it in GitHub Desktop.
Installs the nano text editor on Chrome OS
#!/bin/sh
sudo echo -n
sudo mkdir /tmp/nano
cd /tmp/nano
sudo wget http://v48.googlecode.com/files/nano.tar.gz
sudo tar -zxvf nano.tar.gz
sudo mv ./nano /usr/bin
sudo rm -rf /tmp/nano
@ewpratten
Copy link

or you can move the file to /usr/local/bin

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