Lines Matching refs:SHELL
79 $SHELL -c "
103 $SHELL -c '
121 $SHELL "$f" > /dev/null || err_exit "large here-doc with command substitution fails"
127 $SHELL -c 'x=$(
135 if x=$($SHELL -c 'cat <<< "hello world"' 2> /dev/null)
137 x=$($SHELL -c 'v="hello world";cat <<< $v' 2> /dev/null)
139 x=$($SHELL -c 'v="hello world";cat <<< "$v"' 2> /dev/null)
176 if [[ $($SHELL "$f") != abc ]]
209 if [[ $($SHELL "$f") != foobar ]]
213 [[ $($SHELL "$f") == $'hello\n\tworld' ]] || err_exit "<<# not working for quoted here documents"
215 [[ $($SHELL "$f") == $'hello\n\tworld' ]] || err_exit "<<# not working for non-quoted here document…
216 [[ $( $SHELL <<- \++++
228 [[ $($SHELL -c 'g(){ print ok;}; cat <<- EOF
247 [[ $($SHELL $script) == hello ]] 2> /dev/null || err_exit 'heredoc embeded in command substitution …