From 63da39a917974cf60f5662bb87f927de58cfa356 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 12 May 2012 14:50:49 -0300 Subject: Adding hydras command --- hydras | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 hydras (limited to 'hydras') diff --git a/hydras b/hydras new file mode 100755 index 0000000..2351316 --- /dev/null +++ b/hydras @@ -0,0 +1,42 @@ +#!/bin/bash +# +# Hydra Management Tool. +# +# Copyright (C) 2010 Sarava Group - sarava at lists.riseup.net +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# + +# Basename configuration +BASENAME="`basename $0`" + +if [ -z "$1" ]; then + echo "usage: $BASENAME [ ... ] -- " +fi + +for param in $*; do + shift + + if [ "$param" == "--" ]; then + break + fi + + hydras="$hydras $param" +done + +for hydra in $hydras; do + echo "Issuing $* on hydra $hydra..." + hydra $hydra $* + echo "" +done -- cgit v1.2.3