다음 루프에서 "+"의 의미는 무엇입니까 for
?
for i in $*;do
if [[ ${array1[$i]+DEFINED} == 'DEFINED' ]];then
command1
fi
done
답변1
바라보다https://www.gnu.org/software/bash/manual/bashref.html#Shell-Parameter-Expansion설명서에.
변수에 값이 있으면 "DEFINED"라는 단어로 바뀌고, 변수가 설정되지 않으면 아무것도 바뀌지 않습니다.
$ unset foo; echo ">${foo+DEFINED}<"
><
$ foo=""; echo ">${foo+DEFINED}<"
>DEFINED<
$ foo=bar; echo ">${foo+DEFINED}<"
>DEFINED<
코드는 연관 배열이 있고 array1
특정 배열 값에 대해 특정 작업을 수행하기 위해 위치 매개변수를 반복하는 것처럼 보입니다.
# set up the array
declare -A array1
array1[abc]=first
array1[def]=second
array1[ghi]=third
# set the positional parameters
set -- ghi abc
for i in "$@"; do
if [[ ${array1[$i]+DEFINED} == 'DEFINED' ]]; then
echo "found $i -> ${array1[$i]}"
fi
done
found ghi -> third
found abc -> first