#! /bin/sh
# By RisaPapa
DIALOG=${DIALOG=dialog}
echo "Script File name is $0"
echo "\$DIALOG set value as '${DIALOG=dialog}'"
set DIALOG=${DIALOG=dialog}
echo "\$DIALOG set value as '$1'"
echo "\$DIALOG' value is '${DIALOG}'"
echo "In this case, 'DIALOG=\${DIALOG=dialog}' is same with 'DIALOG=dialog'"
DIALOG=dialog
echo "\$DIALOG' value($DIALOG) has the same value like \${DIALOG=dialog}(${DIALOG=dialog})"
I'm not sure, but this scrip will be some helpful of understanding the shell
default value를 설정하는거죠.${VARIABLE=val
default value를 설정하는거죠.
${VARIABLE=value} 쌍으로 쓰면 만약 VARIABLE 변수가 정의되어 있으면 ${VARIABLE} 값이, 정의되어 있지 않으면 "value" 값이 됩니다.
더 자세한 설명은 man bash!!!
근데..
파워툴 책을 보고 이해를 했습니다.
그런데 DIALOG=${DIALOG=dialog} 와
그냥 ${DIALOG=dialog} 와 차이가 뭐죠?
같은 것 아닌가요?
Re: 근데..
첫 번째 글월은 ${DIALOG=dialog}라는 값으로 DIALOG라는 변수를 선언하지만,
두 번째 글월은 그냥 참조할 뿐이네요.
$DIALOG라는 변수가 꼭 필요할 때 쓰나봅니다.
ㄲ ㅏ ㅂ ㅣ / M c K a b i / 7 7 r b i / T o D y
Re: BASH 스크립트 질문입니다.
dialog.sh
I'm not sure, but this scrip will be some helpful of understanding the shell
댓글 달기