generate ros docs for a list of packages?
I have been looking at the rosdoc_lite package and it only seems to run for one package at a time. Is there a way to run it for a list of packages?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
You can wrap it in a shell script, or run something like this from a directory containing your packages:
for p in *
do
rosdoc_lite $p -o ~/docs/$p
done
Asked: 2015-06-11 14:19:38 -0600
Seen: 201 times
Last updated: Jun 19 '15