Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
TEXT
101
application enabled false
Guest on 27th November 2024 06:20:44 AM
#!/bin/bash
application_enabled="false"
# Check the boolean variable
if [ "$application_enabled" == "false" ]; then
echo "Application disabled."
else
echo "Application enabled."
fi
Raw Paste
#!/bin/bash application_enabled="false" # Check the boolean variable if [ "$application_enabled" == "false" ]; then echo "Application disabled." else echo "Application enabled." fi
Login
or
Register
to edit or fork this paste. It's free.