Given multiple strings to find with ack
, is there a way/option/flag that will return the strings that were not found?
I.e., in this situation, I want "dog" to be output, as it's not found in the file
touch myFile.txt
echo 'hello, world' > data.txt
ack "hello|world|dog"
However, "hello, world" is found