Feature request
Feature description
I want to load a message/request from a yaml file, not from the command line. The benefits of this would be similar to #753.
Targets are
- ros2 topic pub
- ros2 service call
- ros2 action send_goal
In my opinion, it would be neat to be able to do the following
cat foo.yaml | ros2 topic pub <topic_name> <msg_type>
Implementation considerations
This maybe conflicts with the functionality of #753. Similar functionality may be achieved with cat foo.yaml | vipe | tee foo.yaml | ros2 topic pub <topic_name> <msg_type>.