diff options
-rwxr-xr-x | ssh-authorized-send | 3 | ||||
-rwxr-xr-x | ssh-privsend | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ssh-authorized-send b/ssh-authorized-send index 22f5596..dc9c8c3 100755 --- a/ssh-authorized-send +++ b/ssh-authorized-send @@ -6,6 +6,9 @@ # Parameters BASENAME="`basename $0`" KEY="$1" + +# Servers +shift SERVERS="$*" # Checks diff --git a/ssh-privsend b/ssh-privsend index 55f4bfb..9ea225d 100755 --- a/ssh-privsend +++ b/ssh-privsend @@ -6,6 +6,9 @@ # Parameters BASENAME="`basename $0`" KEY="$1" + +# Servers +shift SERVERS="$*" # Checks |