roslaunch command line args
Read through all the tutorials, but couldn't find the answer to this one. I have a ROS node executable, which I can run like this:
./my_node -arg1 -arg2
I can also start it using roslaunch and a my_launch.launch file:
roslaunch my_launch.launch
How do I specify arg1
and arg2
when starting using roslaunch
? I.e. how do I get arg1
and arg2
to show up in argc
and argv
?