Nick Payne wrote:I use gnome-search-tool. With it you can perform filename searches within a directory structure, and also add further options such as search for specified text in the files and by size, date, etc.
If it's not already installed:
- Code: Select all
sudo apt-get install gnome-search-tool
Don't know if anyone's interested but after you do what Nick Payne suggested you might want to try this:
[1] Create a file in the nemo-scripts folder:
- Code: Select all
gedit $HOME/.gnome2/nemo-scripts/Find
[2] Add this contents:
- Code: Select all
#!/bin/sh
exec gnome-search-tool --hidden --contains= --path="$(echo $NEMO_SCRIPT_SELECTED_FILE_PATHS)"
I don't know if anyone else has noticed this but everything you put in code tags now induces leading spaces when you paste. Make sure all leading spaces are removed from this script.EDIT: Left off kind of an important step: Make the file executable:- Code: Select all
chmod +x $HOME/.gnome2/nemo-scripts/Find
[3] If you have Nemo open close it and open it again.
Now go to a folder > Right Click > Scripts > Find. If I did this right it should open up gnome-search-tool to that folder so you can limit your searchs to specific folders through nemo.