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循环嵌套的主要内容,如果未能解决你的问题,请参考以下文章