Suppose I have the following code in bash:
#!/bin/bash bad_fruit=( apple banana kiwi ) for fname in `ls` do # want to check if fname contains one of the bad_fruit is_bad_fruit=??? # <------- fix this line if [ is_bad_fruit ] then echo "$fname contains bad fruit in its name" else echo "$fname is ok" fi done
How to fix is_bad_fruit so that it is true if fname contains one of the bad_fruit strings?
source share