728x90
### bash script에서 for을 쓸 경우
##### 숫자형 반복
#!/bin/bash
for i in $(seq 1 10)
do
echo "${i}"
done
#### 리스트형 반복
#!/bin/bash
list="bluemary athena angel"
for i in ${list}
do
echo "${list}
done
'Linux > Bash Shell Script' 카테고리의 다른 글
aws instance start script (0) | 2023.12.26 |
---|---|
숫자 check script (0) | 2023.12.26 |
리눅스 while (0) | 2023.12.26 |
리눅스 if (1) | 2023.12.26 |
리눅스 날짜별 폴더 생성 스크립트 (2) | 2014.02.24 |