Honestly, I never managed to fully understand how's searching in Gnome supposed to work. Instead, I'd always use grep for that.
grep is a command line tool for searching withing files. You'll easily find millions of usage examples on the net, but here's a few to get you started:
- Code: Select all
grep "search phrase" /path/to/file
will find lines containing "search phrase" in the specified file
- Code: Select all
grep -i "search phrase" /path/to/file
the same as above, but case insensitive
- Code: Select all
grep -r "search phrase" /path/to/folder
will list matching lines in any file withing the given folder
- Code: Select all
grep -l -r "search phrase" /path/to/folder
will list only the names of the files containing the search phrase
In addition, keep in mind that, as with any other standard Linux command, you can chain grep with another grep or something else (find, wc, sed or whatever).
Now, let's hope someone gives an actual answer on how to use the provided feature in Gnome.