0

我正在尝试使用 PSSH 编写一个 bash 脚本,该脚本根据主机发送相同的命令但不同的参数。主机名和参数将从不同的文件“list.txt”中提取。

“list.txt”文件的示例如下所示:

10.0.0.1;'hello';'world'
10.0.0.2;'goodbye';'everyone'
10.0.0.3;'thank';'you!'

我目前拥有的一个例子(但不幸的是没有工作)如下所示:

#!/bin/bash

# grab the list items and make them into a variable to be able to parse
actionList=$(</root/scripts/list.txt)

# parse out host name for pssh
host_name="$( cut -d ';' -sf 1 <<< "$actionList" )";

# parse out the first argument 
argument1="$( cut -d ';' -sf 2 <<< "$actionList" )";

# parse out the second argument
argument2="$( cut -d ';' -sf 3 <<< "$actionList" )";

# pssh command that creates a new file on each server with their respective argument1 and argument2 
pssh -i -AH $host_name -t 300 -O StrictHostKeyChecking=no "$(argument1) ' and ' $(argument2) >> arg1_and_arg2.txt" 

我很确定削减 $actionList 变量并没有给我我想要的东西,但我真正坚持的是,在我解析出来自 $actionList 的正确字符串。

有没有办法让相同的命令,改变文件中的参数与 PSSH 一起工作?有没有更好的程序可以做到这一点?如果有怎么办?任何帮助表示赞赏。

谢谢!

PS如果我对这篇文章进行了格式化或做错了什么,我深表歉意。StackOverflow 通常是我最后的手段,所以我不经常使用它。再次感谢您的帮助/建议!

4

1 回答 1

1

我认为您最好只使用ssh为输入文件的每一行运行的循环。

while IFS=";" read host arg1 arg2; do
    echo "$arg1 and $arg2" | ssh "$host" "cat > arg1_and_arg2.txt" &
done < list.txt
于 2019-02-05T18:54:21.763 回答