Created
March 14, 2023 09:25
-
-
Save fcojperez/abeba9f60ee11b127f74268016ab1f12 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### Bash does not have a native ternary operator. Instead, the same functionality can be achieved using: | |
color="blue" | |
[[ "$color" == "blue" ]] && echo "🟦" || echo "🟩" | |
# Output: 🟦 | |
### More information here, https://how.wtf/ternary-operator-in-bash.html#ternary-operation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment