in reply to Re: cscope & perl
in thread cscope & perl

Might be a bit easier to do:

ack -f --perl | cscope -b -q -i -
Having done that, my editor doesn't take cscope output - but it does tack ctags output, so same idea:
ack -f --perl | ctags -L -
If you don't have ack, you should. It's written in perl, and is way easier to use than grep, with way more functionality.