Quote Originally Posted by SurR3AL View Post
one problem....after i run a search and get multiple results, can i select multiple files from that list and drag them to another window? in my case i've stored all the fonts i collected in windows in multiple directories based on its name. so i did a search for *.ttf with this search script. works BEAUTIFULLY but i cant select all the fonts and drag them to my ~/.fonts folder. got any ideas? thanks!
I'm afraid the app only lets you open the item or parent folder of the item, it is not integrated with the environment.

kalikiana's beagle front end might allow you to do this, though.

Alternatively, you can always run this:

cd "the root of the windows fonts folder"
find -type f -name '*.ttf' | while read x; do mv $x ~/.fonts ; done

i advise you make a test folder first, though