├── .git_archival.txt ├── .gitattributes ├── .github └── workflows │ └── publish_pip.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── doc ├── logo.png ├── rosmsg0.png └── rosmsg1.png ├── pyproject.toml ├── setup.cfg └── src └── ros_command ├── __init__.py ├── build_status_display.py ├── build_tool.py ├── command_lib.py ├── commands ├── get_current_setup_bash.py ├── get_ros_command_bash.py ├── get_ros_directory.py ├── rosbuild.py ├── rosclean.py ├── rosdep_install.py ├── rosexecute.py ├── rosinterface.py ├── roslaunch.py ├── rosrun.py └── rostopic.py ├── completion.py ├── packages.py ├── ros_command_setup.bash ├── terminal_display.py └── util.py /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/publish_pip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/.github/workflows/publish_pip.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | src/ros_command/_version.py 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/README.md -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/rosmsg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/doc/rosmsg0.png -------------------------------------------------------------------------------- /doc/rosmsg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/doc/rosmsg1.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/ros_command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/__init__.py -------------------------------------------------------------------------------- /src/ros_command/build_status_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/build_status_display.py -------------------------------------------------------------------------------- /src/ros_command/build_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/build_tool.py -------------------------------------------------------------------------------- /src/ros_command/command_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/command_lib.py -------------------------------------------------------------------------------- /src/ros_command/commands/get_current_setup_bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/get_current_setup_bash.py -------------------------------------------------------------------------------- /src/ros_command/commands/get_ros_command_bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/get_ros_command_bash.py -------------------------------------------------------------------------------- /src/ros_command/commands/get_ros_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/get_ros_directory.py -------------------------------------------------------------------------------- /src/ros_command/commands/rosbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rosbuild.py -------------------------------------------------------------------------------- /src/ros_command/commands/rosclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rosclean.py -------------------------------------------------------------------------------- /src/ros_command/commands/rosdep_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rosdep_install.py -------------------------------------------------------------------------------- /src/ros_command/commands/rosexecute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rosexecute.py -------------------------------------------------------------------------------- /src/ros_command/commands/rosinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rosinterface.py -------------------------------------------------------------------------------- /src/ros_command/commands/roslaunch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/roslaunch.py -------------------------------------------------------------------------------- /src/ros_command/commands/rosrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rosrun.py -------------------------------------------------------------------------------- /src/ros_command/commands/rostopic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/commands/rostopic.py -------------------------------------------------------------------------------- /src/ros_command/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/completion.py -------------------------------------------------------------------------------- /src/ros_command/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/packages.py -------------------------------------------------------------------------------- /src/ros_command/ros_command_setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/ros_command_setup.bash -------------------------------------------------------------------------------- /src/ros_command/terminal_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/terminal_display.py -------------------------------------------------------------------------------- /src/ros_command/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetroRobots/ros_command/HEAD/src/ros_command/util.py --------------------------------------------------------------------------------