Skip to content

Instantly share code, notes, and snippets.

@nqthqn
Created May 3, 2017 16:52
Show Gist options
  • Save nqthqn/30c2660211b756d85c8c97c05619d2c6 to your computer and use it in GitHub Desktop.
Save nqthqn/30c2660211b756d85c8c97c05619d2c6 to your computer and use it in GitHub Desktop.
WIP: Simple script used for provisioning remote servers
# cat ~/.ssh/id_rsa.pub | ssh root@$1 'cat >> .ssh/authorized_keys'
# ssh-copy-id root@$1
ssh root@$1 'curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
cat ~/.vimrc | ssh root@$1 'cat > .vimrc'
cat ~/.tmux.conf | ssh root@$1 'cat > .tmux.conf'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment