Difference between revisions of "Pssh"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | {{lc}} |
− | parallel ssh program | + | <code>[[pssh]]</code> is a parallel ssh program |
− | |||
− | |||
* https://linux.die.net/man/1/pssh | * https://linux.die.net/man/1/pssh | ||
− | + | * Repo: https://github.com/lilydjwg/pssh | |
− | + | * Installation: <code>brew install pssh</code> | |
− | |||
ssh | ssh | ||
Line 12: | Line 9: | ||
pssh: error: Command not specified. | pssh: error: Command not specified. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <pre> | ||
+ | pssh --help | ||
+ | Usage: pssh [OPTIONS] command [...] | ||
+ | |||
+ | Options: | ||
+ | --version show program's version number and exit | ||
+ | --help show this help message and exit | ||
+ | -h HOST_FILE, --hosts=HOST_FILE | ||
+ | hosts file (each line "[user@]host[:port]") | ||
+ | -H HOST_STRING, --host=HOST_STRING | ||
+ | additional host entries ("[user@]host[:port]") | ||
+ | -l USER, --user=USER username (OPTIONAL) | ||
+ | -p PAR, --par=PAR max number of parallel threads (OPTIONAL) | ||
+ | -o OUTDIR, --outdir=OUTDIR | ||
+ | output directory for stdout files (OPTIONAL) | ||
+ | -e ERRDIR, --errdir=ERRDIR | ||
+ | output directory for stderr files (OPTIONAL) | ||
+ | -t TIMEOUT, --timeout=TIMEOUT | ||
+ | timeout (secs) (0 = no timeout) per host (OPTIONAL) | ||
+ | -O OPTION, --option=OPTION | ||
+ | SSH option (OPTIONAL) | ||
+ | -v, --verbose turn on warning and diagnostic messages (OPTIONAL) | ||
+ | -A, --askpass Ask for a password (OPTIONAL) | ||
+ | -x ARGS, --extra-args=ARGS | ||
+ | Extra command-line arguments, with processing for | ||
+ | spaces, quotes, and backslashes | ||
+ | -X ARG, --extra-arg=ARG | ||
+ | Extra command-line argument | ||
+ | -i, --inline inline aggregated output and error for each server | ||
+ | --inline-stdout inline standard output for each server | ||
+ | -I, --send-input read from standard input and send as input to ssh | ||
+ | -P, --print print output as we get it | ||
+ | |||
+ | Example: pssh -h hosts.txt -l irb2 -o /tmp/foo uptime | ||
+ | </pre> | ||
+ | |||
==See also== | ==See also== |
Latest revision as of 06:22, 19 October 2022
pssh
is a parallel ssh program
- https://linux.die.net/man/1/pssh
- Repo: https://github.com/lilydjwg/pssh
- Installation:
brew install pssh
ssh Usage: pssh [OPTIONS] command [...] pssh: error: Command not specified.
pssh --help Usage: pssh [OPTIONS] command [...] Options: --version show program's version number and exit --help show this help message and exit -h HOST_FILE, --hosts=HOST_FILE hosts file (each line "[user@]host[:port]") -H HOST_STRING, --host=HOST_STRING additional host entries ("[user@]host[:port]") -l USER, --user=USER username (OPTIONAL) -p PAR, --par=PAR max number of parallel threads (OPTIONAL) -o OUTDIR, --outdir=OUTDIR output directory for stdout files (OPTIONAL) -e ERRDIR, --errdir=ERRDIR output directory for stderr files (OPTIONAL) -t TIMEOUT, --timeout=TIMEOUT timeout (secs) (0 = no timeout) per host (OPTIONAL) -O OPTION, --option=OPTION SSH option (OPTIONAL) -v, --verbose turn on warning and diagnostic messages (OPTIONAL) -A, --askpass Ask for a password (OPTIONAL) -x ARGS, --extra-args=ARGS Extra command-line arguments, with processing for spaces, quotes, and backslashes -X ARG, --extra-arg=ARG Extra command-line argument -i, --inline inline aggregated output and error for each server --inline-stdout inline standard output for each server -I, --send-input read from standard input and send as input to ssh -P, --print print output as we get it Example: pssh -h hosts.txt -l irb2 -o /tmp/foo uptime
See also[edit]
- SSH:
ssh
, TLS,.ppk, .pem, .crt, .pub
, ED25519, Key exchange method (KEX), public key, private key,ssh -Q kex
,IAMUserSSHKeys
,known_hosts
, ssh tunnel, Dropbear - parallel
- Execute a command in parallel by ssh
- SSH clients:
ssh (OpenSSH)
,putty
, MobaXterm,plink
,mosh
,paramiko
,conch
pssh
,sshpass
andautossh
,sftp, Termius
Advertising: