Last active
October 27, 2015 12:26
-
-
Save Makova/6e4d7d9e6b3346e955c5 to your computer and use it in GitHub Desktop.
Instalar Geany
This file contains 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 | |
# Usage: ./geany.sh [host] | |
host="${1:[email protected]}" | |
# The host key might change when we instantiate a new VM, so | |
# we remove (-R) the old host key from known_hosts | |
ssh-keygen -R "${host#*@}" 2> /dev/null | |
# tar cj . | ssh -o 'StrictHostKeyChecking no' "$host" ' | |
# sudo rm -rf ~/chef && | |
# mkdir ~/chef && | |
# cd ~/chef && | |
# tar xj && | |
sudo bash geany.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment