I already searched several answers, but those cannot be applied to my problem.
The problem code is below.
I think the result of dart -version
is not a simple string.
DART_VER=$(dart --version)
#expect output as ==>> Dart VM version: ...
echo "${DART_VER}"
if [[ "$DART_VER" == Dart* ]]
then
echo Dart! # doesn't enter here
fi
I believe that
dart --version
is writing out to standard error rather than standard output. (See https://code.google.com/p/dart/codesearch#dart/trunk/dart/runtime/bin/main.cc&sq=package:dart&q=ProcessVersionOption&l=588.) So when you see your script printDart VM version: ...
, that's actually coming from theDART_VER=$(dart --version)
(which printsDart VM version: ...
to standard error, and setsDART_VER
to the empty string) rather than theecho "${DART_VER}"
(which just prints the empty string, plus a newline).You can fix that by changing this:
to this:
to merge standard error into standard output for capture.