我想象征性地链接两个数组的元素。例如, array1 = (AAA BBB CCC DDD)array2 = (001 002 003 004)001->AAA002->BBB003->CCC004->DDD

这是我写的shell脚本,但它不起作用,我无法弄清楚哪里错了。

declare -a array1=(AAA BBB CCC DDD)
declare -a array2=(001 002 003 004)
num = ${#array1[@]}
ssh username@hostmachine 'for((i = 0 ; i < $num ; i++ )); do ln -sf ${array1[$i]} ${array2[$i]}; done'

谁能给我一些提示/建议?先感谢您。

最佳答案

您应该将所有 bash 代码包含在 ssh 的参数中,如下所示:

ssh username@hostmachine 'declare -a array1=(AAA BBB CCC DDD); declare -a array2=(001 002 003 004); num = ${#array1[@]}; for((i = 0 ; i < $num ; i++ )); do ln -sf ${array1[$i]} ${array2[$i]}; done'

因为否则 ssh bash 代码将无法访问您以前定义的数组,因为它们是在 中定义的,您的 计算机不在 ssh 计算机中。

关于arrays - 带有 bash for 循环的 SSH 命令选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13521403/

10-16 20:20