Created
July 20, 2013 02:14
-
-
Save lebowitz/6043568 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/sh | |
echo ">>>> Shell Copy >>>>" | |
echo "" | |
HOST=$1 | |
BIN=`which scp` | |
if test -z $HOST | |
then | |
echo "You must specify a hostname or ip address as the first argument" | |
exit 1 | |
fi | |
echo "Starting copy process for host: $HOST" | |
FILES=".bashrc .emacs .emacs.d .bash_logout .bash_profile" | |
for file in $FILES; do | |
cd $HOME | |
echo -n "Copying file[$file]: " | |
flag='' | |
if [ -d $file ]; then flag=-r; fi | |
echo "$BIN $flag $file $HOST:." | |
$BIN $flag $file $HOST:. | |
if [ $? -ne 0 ]; then | |
echo "[FAILED]" | |
exit 2 | |
fi | |
echo "[OK]" | |
done | |
#echo -n "Copy .my.cnf file as well? [y,N]" | |
#if [ "$REPLY" = y ]; then | |
# echo -n "Copying file[$file]: " | |
# $BIN ~/.my.cnf $HOST:. | |
#fi | |
echo "" | |
echo "Finished copying shell files to host: $HOST" | |
echo "" | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment