#!/bin/bash application_enabled="false" # Check the boolean variable if [ "$application_enabled" == "false" ]; then echo "Application disabled." else echo "Application enabled." fi