TEXT   120
application enabled false
Guest on 27th November 2024 06:20:44 AM


  1. #!/bin/bash
  2.  
  3. application_enabled="false"
  4.  
  5. # Check the boolean variable
  6. if [ "$application_enabled" == "false" ]; then
  7.         echo "Application disabled."
  8. else
  9.         echo "Application enabled."
  10. fi

Raw Paste

Login or Register to edit or fork this paste. It's free.