Last active
August 29, 2015 14:06
-
-
Save dmalikov/0a5d7919378d6bcd1aae to your computer and use it in GitHub Desktop.
Meanwhile on a #bash interview (or even #zsh)
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
$ [[ -n "$(echo "string with word word" | grep -o word))" ]] && echo contains | |
contains | |
$ [[ -n "$(echo "string without it" | grep -o word))" ]] && echo contains | |
contains | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment