是否有可能在bash中循环元组?
作为一个例子,如果以下工作将会很好:
for (i,j) in ((c,3), (e,5)); do echo "$i and $j"; done
是否有一种解决方法,以某种方式让我循环元组?
bash for-loop
bash ×1
for-loop ×1