#!/bin/bash
#===============================================================================
#
# FILE: _all.sh
#
# USAGE: ./_all.sh
#
# DESCRIPTION: Executes commands on remote machines listed in this script
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: John Ryland (jryland@xiaofrog.com)
# COMPANY: InvertedLogic
# VERSION: 1.0
# CREATED: 06/28/08 03:19:58 CST
# REVISION: ---
#===============================================================================
#SERVERS="jryland@www.invertedlogic.com svn_cgi_user@svn.invertedlogic.com"
SERVERS="invertedlogic_customers@customers.invertedlogic.com invertedlogic_internal@www.invertedlogic.com invertedlogic_investors@investors.invertedlogic.com invertedlogic_partners@partners.invertedlogic.com invertedlogic_public@www.invertedlogic.com svn_cgi_user@svn.invertedlogic.com jryland@www.xiaofrog.com"
for host in $SERVERS
do
echo Executing: host="$host" cmd="$@"
ssh $host $@
done