I spent some time to get around this problem:
My search finds a couple of files like
page a.1
page a.2
page a.3
page b.1
page b.4
page c.6

Now I only need to know that there is a,b,c and not d,e,f to work on.
I have to eliminate the duplicates.

My solution is: Start the search as usual.
Use a template that logs all results to another page and reduce them
using flags=unique.
Add some other functions to work on with the results.

[(search group=somegroup.* output=false template="template.whatever")]

[[#template.whatever#]]
[(template each)]
{(log '{+:result_you_are_after}: <(some function here)>'
delimiter='<br>' flags='unique' target='log.test')}

returns:
result_you_are_after from pages a: ...
result_you_are_after from pages b: ...
result_you_are_after from page c: ...

I would have used info report but I do not know if this works with
unique.

Greetings, Martin

-- 
You received this message because you are subscribed to the Google Groups 
"BoltWire" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/boltwire?hl=en.

Reply via email to