Robotics StackExchange | Archived questions

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?

Asked by kunal on 2015-06-11 14:19:38 UTC

Comments

Answers

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 by joq on 2015-06-19 19:29:28 UTC

Comments

Thank you :)

Asked by kunal on 2015-06-19 21:07:14 UTC