Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- bash
- PostgreSQL
- audit
- zabbix
- 빅데이터
- K8S
- 파이썬
- Elk
- 크롬
- CentOS
- GNOME
- Elasticsearch
- Audit Log
- Chrome
- RHEL
- 디렉토리
- log
- centos 7.5
- GPU
- Linux
- Kubernetes
- yum
- Shell
- C
- syslog
- Python
- JSON
- rsyslog
- 서울시민카드
- docker
Archives
- Today
- Total
Sysops Notepad
[bash] for문 사용법 본문
728x90
1. 1~ 10까지 출력
for i in {1..5}
do
echo "Welcome $i times"
done
2. 1 3 5 출력
for i in {1..5..2}
do
echo "Welcome $i times"
done
3. 파라미터값 입력 받아 반복
#!bin/bash
if [ "$#" -lt 1 ]; then ## 파라미터가 없으면 종료
echo "$# is Illegal number of parameters."
echo "Usage: $0 [options]"
exit 1
fi
args=("$@")
## for loop 를 파라미터 갯수만큼 돌리기 위해 three-parameter loop control 사용
for (( c=0; c<$#; c++ ))
do
echo "$c th parameter = ${args[$c]}";
done
참고:
https://www.lesstif.com/pages/viewpage.action?pageId=26083916
728x90
'업무 > dev' 카테고리의 다른 글
[Python] Jupyter 메모리 사용률 확인 (0) | 2019.02.20 |
---|---|
[Python] base64 인코딩/디코팅 하는법 (0) | 2019.02.15 |
[Python] fluent-logger-python (0) | 2019.01.25 |
[bash] echo cmd option (0) | 2018.11.27 |
[Python] 파이썬 소스 컴파일(Python source compile) 하는 방법 (0) | 2018.11.14 |
Comments