Skip to main content
5 of 13
added 54 characters in body
miku
  • 186k
  • 47
  • 310
  • 315

From: Using boolean variables in Bash

the_world_is_flat=true
# ...do something interesting...
if $the_world_is_flat ; then
    echo 'Be careful not to fall off!'
fi

Explanation: What is /bin/true?

Caveats: http://stackoverflow.com/a/21210966/89391

miku
  • 186k
  • 47
  • 310
  • 315