shell for循环遍历数组
发布时间:2022-03-03 01:20:30

shell for循环遍历数组

a=("Fdf" "df" "fd")
for str in ${a[@]};do
echo $str
done