BEIKE blog

備忘録です

2022-08-01から1ヶ月間の記事一覧

ある任意の文字列を含むファイル/フォルダを削除

ls | grep -P '^(?!.*rviz).*$' | xargs rm -rf

ros2 基本 メモ

パッケージ作成 ros2 pkg create hoge_pkg --dependencies rclcpp --build-type ament_cmake --license Apache-2.0 ros2 pkg create inverted_pendulum_robot_imu_filter_ros2 --dependencies rclcpp --build-type ament_cmake --license Apache-2.0 --maint…