摘要: $ cat 8.sh #!/bin/bash array=(1 2 3) echo "case 1" for line in ${array[@]} do echo $line done $ ./8.sh case 1 1 2 3 阅读全文
posted @ 2022-10-28 14:54 tigergaonotes 阅读(11) 评论(0) 推荐(0)