일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- devops #jenkins
- docker
- 컨테이너
- 초간단파이썬
- namespace
- variable
- RSS
- devops #engineer
- bash
- WEB
- Kubernetes
- java
- multivm
- 파이썬
- Vagrant
- ioredirection
- 쿠버네티스
- httpd실행
- nginx
- python
- Strimzi
- Engineer
- springboot
- linux
- 도커
- container
- aws #engineer
- k8s
- mongodb operator
- DOIK
- Today
- Total
목록variable (2)
샤인의 IT (막 적는) 메모장
Export Variable 스크립트를 돌릴 때 export를 사용해야 출력된다. 기본적으로 Command Line에서 지정했을 경우 로그아웃 후 재접속 시 해당 변수는 초기화 되어 있다. 그래서 .bashrc 파일에 해당 변수를 지정한다. Linux 내 모든 계정에 적용하고 싶다면 /etc/profile에 입력한다. .bashrc와 /etc/profile에 같은 변수가 지정되어 있다면? .bashrc 변수를 가져온다. [root@scriptbox scripts]# cat 7.testvar.sh #!/bin/bash echo "The $SEASON season is logner" [root@scriptbox scripts]# chmod +x 7.testvar.sh #명령어로 출력하면 바로 나오지만 스크립..
Variable Command Line에서 변수 지정 시 = "" 스크립트 작성 시 같음. 해당 변수를 가져오고 싶을 땐 $(달러) 기호 사용 #변수 지정 [root@scriptbox scripts]# SKILL="DevOps" # $를 사용해야 변수를 출력한다. [root@scriptbox scripts]# echo $SKILL DevOps [root@scriptbox scripts]# echo SKILL SKILL [root@scriptbox scripts]# PACKAGE="httpd wget unzip" [root@scriptbox scripts]# yum -y install $PACKAGE Loaded plugins: fastestmirror Loading mirror speeds from ca..