diff options
author | Michael Weiss | 2019-10-09 15:02:39 +0200 |
---|---|---|
committer | Michael Weiss | 2019-10-09 15:02:39 +0200 |
commit | 22e64ddc48888838a4400f2296057a7ef7dc38f7 (patch) | |
tree | f655a1b57b7d5e87431a94deecdfddd3b7b06999 /ssh/fsi-run-everywhere | |
parent | 5a0934cb299601939ad7bd77abd2a16e0ac28012 (diff) |
ssh: Add a script fsi-run-everywhere (draft)
Diffstat (limited to 'ssh/fsi-run-everywhere')
-rwxr-xr-x | ssh/fsi-run-everywhere | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ssh/fsi-run-everywhere b/ssh/fsi-run-everywhere new file mode 100755 index 0000000..efbe8ca --- /dev/null +++ b/ssh/fsi-run-everywhere @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +set -eu + +# Synopsis: Runs a command on all fsi hosts +# Author: Michael Weiss +# License: Unlicense (https://unlicense.org/UNLICENSE) + +if [[ $# -eq 0 ]]; then + echo "Error: Wrong usage." >&2 + echo "fsi-run-everywhere: cmd ..." >&2 + exit 1 +fi + +## Optional hack to output the provided arguments in a format that can be reused as shell input: +#printf -v SSH_COMMAND '%q ' "$@" +## Note: ${parameter@Q} should also work. +## TODO: Might make sense to read commands interactively. + +for host in "amy" "anja" "kim" "lara" "lea" "nina" "sessel" "sofa" "teri" "trinity"; do + echo "+ Host: $host" + ssh "$host.fsi.uni-tuebingen.de" "$@" +done |