0

我想在单行中运行多个命令,如 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
4

1 回答 1

1

在尝试了几种组合之后,以下为我工作

pssh -Pi --user XXXX -h host.txt  -x "-oStrictHostKeyChecking=no" ls;date;
于 2017-11-29T08:42:24.373 回答