Why when I type in bash: if [ false ]; then echo 'ok'; fi; I get ok string as a result? The similiar result I can get also when using variable: ok=false; if [ $ok ]; then echo 'ok'; fi;
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
|||||
|
|
You can simulate the test of true / false condition of a variable as follows:
When you are doing:
It implicitly translates to
Where the Aside -
To read more about them. |
|||
|
|