ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I'll give one possible answer myself. Creating my own 'rosgrep' script, this exactly matches my requirements.

 #!/bin/bash
 pkg=$(rospack find $1)
 shift
 grep --exclude-dir=\.svn --exclude-dir=bin --exclude-dir=build --exclude-dir=lib $* -r $pkg --color=always

Resulting in

image description