반응형
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
- ioredirection
- linux
- nginx
- aws #engineer
- httpd실행
- java
- devops #engineer
- bash
- container
- mongodb operator
- 컨테이너
- variable
- 쿠버네티스
- 초간단파이썬
- docker
- k8s
- Engineer
- Vagrant
- 도커
- springboot
- python
- RSS
- DOIK
- Strimzi
- devops #jenkins
- namespace
- 파이썬
- multivm
- Kubernetes
- WEB
Archives
- Today
- Total
목록argument (1)
샤인의 IT (막 적는) 메모장
[Bash] Command Line Argument
Argument Argument 지정 시 로 사용한다. #Argument 설정 스크립트 [root@scriptbox scripts]# cat 4.args.sh #!/bin/bash echo "Value of 0 is " echo $0 echo "Value of 1 is " echo $1 echo "Value of 2 is " echo $2 echo "Value of 3 is " echo $3 [root@scriptbox scripts]# ./4.args.sh S hin e Value of 0 is ./4.args.sh Value of 1 is S Value of 2 is hin Value of 3 is e Argument를 지정하여 WEB 서버 설치 스크립트 #웹서버 설정 아규먼트 스크립트 #URL과 A..
Programming/Bash
2022. 1. 22. 17:53