반응형
기본 변수 선언
#! /bin/bash a="hello" # 변수 a b="world" # 변수 b echo "${a}, ${b}" |
$> sh test.sh
전역 변수 선언
#! /bin/bash #! test.sh export a="hello" export b="world" sh test02.sh |
#! /bin/bash #! test02.sh echo "${a}, ${b}" |
$> sh test.sh
매개 변수 선언
#! /bin/bash #! test.sh echo "쉘 스크립 명령어: ${0}" echo "첫 번째 변수 : ${1}" echo "두 번째 변수 : ${2}" echo "매개 변수 개수 : ${#}" echo "전체 매개 변수 : ${*}" |
반응형
'개발 창고 > Server' 카테고리의 다른 글
[Ubuntu] tar - 특정 폴더부터 압축 해제 (0) | 2022.06.21 |
---|---|
[Ubuntu] 숨김 파일 관리 (0) | 2022.06.21 |
[CentOS] 공용폴더를 위한 samba 활용하기 (0) | 2021.03.16 |
[CentOS7] crontab 활용하기 (0) | 2021.01.28 |
[Tomcat] The AJP Connector is configured with secretRequired="true" but the secret attribute is either null or "". This combination is not valid. (2) | 2020.10.22 |