Created
September 27, 2017 15:39
-
-
Save charlieparkes/e548fae751604dea9f79282cdf804a0c to your computer and use it in GitHub Desktop.
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 | |
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