Shell for 循环嵌套的写法 #!/bin/bashfor num in 1 2 3 4 5 do for char in "a b c d e" do echo $num $char donedone如上 Shell 2023-05-16 185 点赞 2 评论 280 浏览