Created
March 14, 2023 09:25
-
-
Save fcojperez/abeba9f60ee11b127f74268016ab1f12 to your computer and use it in GitHub Desktop.
Revisions
-
fcojperez renamed this gist
Mar 14, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
fcojperez created this gist
Mar 14, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #### 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