[ "$age" \< 18 ] && {
echo "I'm not an adult yet"
} || {
echo "I'm an adult"
}
if you want to be using braces in if statements lol
[ "$age" \< 18 ] && {
echo "I'm not an adult yet"
} || {
echo "I'm an adult"
}
if you want to be using braces in if statements lol