Added a script to make my three servers pull in the new changes.

This commit is contained in:
Nicole Tietz-Sokolskaya 2012-02-10 22:12:51 -05:00
parent 553c6c24c2
commit de8594aee4

11
push.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
places="nicholas@ntietz.com ntietz@neptune.cs.kent.edu ntietz@acm.cs.kent.edu"
for each in $places
do
echo "Updating on $each..."
ssh $each "cd ~/Repositories/config; git pull"
echo "Done."
done