OS & Shell/bash
[bash] array loop
냐옴
2021. 4. 14. 16:55
list=(
aa
bb
)
for item in ${list[@]}
do
echo $item
done