如何在单行 pssh 中 运行 多个命令?
how to run multiple command in single line pssh?
我想运行在单行中使用多个命令,如 command1、command2、command3 怎么办?
我尝试关注
pssh -Pi --user XXXX -h host.txt -x "-oStrictHostKeyChecking=no" ls date
我收到以下错误
Stderr: ls: cannot access date: No such file or directory
在尝试了几种组合后,以下对我有用
pssh -Pi --user XXXX -h host.txt -x "-oStrictHostKeyChecking=no" ls;date;
我想运行在单行中使用多个命令,如 command1、command2、command3 怎么办?
我尝试关注
pssh -Pi --user XXXX -h host.txt -x "-oStrictHostKeyChecking=no" ls date
我收到以下错误
Stderr: ls: cannot access date: No such file or directory
在尝试了几种组合后,以下对我有用
pssh -Pi --user XXXX -h host.txt -x "-oStrictHostKeyChecking=no" ls;date;