Fish string-match
string match PATTERN STRING
string match tests each STRING against PATTERN and prints matching substrings.
Multiple strings can be matched at once
# one
# three
The input strings can be a file glob
# file1.ex
# file2.ex
# file3.ex
Match patterns can be inverted with -v
# another_file.ex
Can be composed
# Invoke: 'go run *.go' while excluding test files. Useful when
# there are multiple files in the main package.