[Shell Script] 쉘스크립트 - for 문

2021. 3. 17. 23:29 기타/Shell script, bash

for 문

for [변수이름] in [값1] [값2] [값3] ...
do
    echo "$[변수이름]"
done