@@ -6,7 +6,7 @@ Bugs or Requests: yuriescl@gmail.com
66
77#### Usage:
88```
9- $ run-over-ssh [OPTIONS] USERNAME COMMAND HOSTS...
9+ $ runoverssh [OPTIONS] USERNAME COMMAND HOSTS...
1010```
1111
1212#### Default behavior:
@@ -27,15 +27,15 @@ $ run-over-ssh [OPTIONS] USERNAME COMMAND HOSTS...
2727 -b, --bashflags [flags] set custom bash flags
2828 default: '-l'
2929
30- -l, --log save ssh output (default: run-over-ssh .log) (overwrite)
30+ -l, --log save ssh output (default: runoverssh .log) (overwrite)
3131 --logfile [file] save ssh output to a custom file (overwrite)
3232 -q, --quiet disable ssh screen output
3333
3434```
3535
3636#### Examples
3737```
38- $ run-over-ssh root "systemctl restart apache2" webserver webserver2
38+ $ runoverssh root "systemctl restart apache2" webserver webserver2
3939Please set root's password for each host:
4040
4141root@webserver password:
@@ -45,23 +45,23 @@ Connecting as root@webserver...
4545Connecting as root@webserver2...
4646```
4747```
48- $ run-over-ssh --log --quiet --globalpw root "reboot" host1 host2 host3
48+ $ runoverssh --log --quiet --globalpw root "reboot" host1 host2 host3
4949root's password (used for all connections):
5050
5151Connecting as root@host1...
5252Connecting as root@host2...
5353Connecting as root@host3...
5454```
5555```
56- $ run-over-ssh -q -l -g -r puppet-nodes root "puppet agent -t"
56+ $ runoverssh -q -l -g -r puppet-nodes root "puppet agent -t"
5757root's password (used for all connections):
5858
5959Connecting as root@node1...
6060Connecting as root@node2...
6161Connecting as root@node3...
6262```
6363```
64- $ run-over-ssh remoteuser "cd git-project && git status" devmachine
64+ $ runoverssh remoteuser "cd git-project && git status" devmachine
6565Please set remoteuser's password for each host:
6666
6767remoteuser@devmachine password:
@@ -72,7 +72,7 @@ Your branch is up-to-date with 'origin/master'.
7272nothing to commit, working directory clean
7373```
7474```
75- $ run-over-ssh -g --script backup.sh --hostsfile hostlist remoteuser
75+ $ runoverssh -g --script backup.sh --hostsfile hostlist remoteuser
7676remoteuser's password (used for all connections):
7777
7878Connecting as remoteuser@host1...
0 commit comments