This is a draft cheat sheet. It is a work in progress and is not finished yet.
Navigating Topics: rostopicList all topics | rostopic list
| Get information for a specific topic, e.g. odom | rostopic info odom
| Print messages from a topic, e.g. odom | rostopic echo odom
|
ROS MessagesShow a message definition, e.g. for sensor_msgs/LaserScan | rosmsg show sensor_msgs/LaserScan
| List all messages in a package, e.g. sensor_msgs | rosmsg package sensor_msgs
|
ROS Nodes, rosnodeList all ROS nodes | rosnode list
| Get information for a ROS node (e.g. rosout ), including subscribed and advertised topics | rosnode info rosout
| Kill a running ROS node, e.g. localization | rosnode kill localization
| Kill all running ROS nodes | rosnode kill -a
|
|