for循环嵌套

Posted effortsing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for循环嵌套相关的知识,希望对你有一定的参考价值。

#!/bin/bash

#定义变量

export NODE_NAMES=(test1 test2 test3 test4)
export NODE_IPS=(192.168.0.91 192.168.0.92 192.168.0.93 192.168.0.94)

for node_name in ${NODE_NAMES[*]}
do
  for node_ip in ${NODE_IPS[*]}
  do
    scp /root/ssl/kubelet-bootstrap-${node_name}.kubeconfig [email protected]${node_ip}:/etc/kubernetes/kubelet-bootstrap.kubeconfig
  done
done

 

以上是关于for循环嵌套的主要内容,如果未能解决你的问题,请参考以下文章

如何在 C++ 中展开嵌套的 for 循环?

谁能教我VB for循环的嵌套怎么算

python中为啥我的for循环里嵌套的if只能循环一次?

Java for循环嵌套for循环,你需要懂的代码性能优化技巧

嵌套多个“for”循环

一文了解Python中的循环(for while break continue 嵌套循环...)