$ [ -f wordmatch.c ] $ [ -f wordmatchtest.c ] $ echo $? 1 $ [ -f wordmatch.c ] $ echo $? 0 $ [ -f wordmatch.c ] || echo hello $ [ -f wordmatchtest.c ] || echo hello hello $
BEAUTY AND PLAY
$ [ -f wordmatch.c ] $ [ -f wordmatchtest.c ] $ echo $? 1 $ [ -f wordmatch.c ] $ echo $? 0 $ [ -f wordmatch.c ] || echo hello $ [ -f wordmatchtest.c ] || echo hello hello $