ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You could use the aliencontrol ROS package. This package contains a node that starts an external application.
For example, if you wanted to start, say, top
in a roslaunch script, you would include the following node:
<node pkg="aliencontrol" type="aliencontrol" name="aliencontrol_top">
<param name="cmd" value="top"/>
</node>
There are some benefits of using this package over creating a ROS package and putting bash scripts inside it: