我正在运行一个基本的for循环bash脚本,该脚本登录到多个linux框以执行脚本,并在脚本退出每个框后,等待60秒。问题是脚本没有在脚本中应用命令。
#!/bin/bash for i in `cat test.txt`; do ssh -A -t -o userknownhostsfile=/dev/null -o stricthostkeychecking=no -o batchmode=yes -o connecttimeout=5 $i "sudo puppet agent -t & "; sleep 60; done