Skip to content

Instantly share code, notes, and snippets.

@charlieparkes
Created September 27, 2017 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charlieparkes/e548fae751604dea9f79282cdf804a0c to your computer and use it in GitHub Desktop.
Save charlieparkes/e548fae751604dea9f79282cdf804a0c to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
echo "Copying environment to $1..."
/usr/bin/env scp -r .ssh $1:~
/usr/bin/env scp -r .vimrc $1:~
/usr/bin/env scp -r .bash* $1:~
/usr/bin/env scp -r .tmux* $1:~
/usr/bin/env scp -r $0 $1:~
echo "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment