diff --git a/push.sh b/push.sh new file mode 100755 index 0000000..d520952 --- /dev/null +++ b/push.sh @@ -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 +