Skip to content

Instantly share code, notes, and snippets.

@DevoKun
Created January 30, 2015 21:48
Show Gist options
  • Save DevoKun/5154c6e645f9ded0f3bd to your computer and use it in GitHub Desktop.
Save DevoKun/5154c6e645f9ded0f3bd to your computer and use it in GitHub Desktop.
Install gosu for easy step-down from root
#!/bin/bash
gpg --keyserver pgp.mit.edu --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4
curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.2/gosu-$(dpkg --print-architecture)" \
&& curl -o /usr/local/bin/gosu.asc -SL "https://github.com/tianon/gosu/releases/download/1.2/gosu-$(dpkg --print-architecture).asc" \
&& gpg --verify /usr/local/bin/gosu.asc \
&& rm /usr/local/bin/gosu.asc \
&& chmod +x /usr/local/bin/gosu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment