2024-04-17 17:40:20 +08:00
|
|
|
# !/bin/bash
|
|
|
|
# command content
|
2024-03-16 22:19:28 +08:00
|
|
|
cmds=( "ros2 launch rm_urdf_ff display_launch.py"
|
|
|
|
"ros2 launch livox_ros_driver2 msg_MID360_launch.py"
|
2024-04-23 20:35:07 +08:00
|
|
|
"ros2 launch linefit_ground_segmentation_ros segmentation.launch.py"
|
2024-03-16 22:19:28 +08:00
|
|
|
"ros2 launch fast_lio mapping.launch.py"
|
|
|
|
"ros2 launch pointcloud_to_laserscan pointcloud_to_laserscan_launch.py"
|
2024-04-26 20:26:42 +08:00
|
|
|
"ros2 launch plc_bringup bringup_launch.py \map:=c603"
|
2024-04-17 17:40:20 +08:00
|
|
|
)
|
2024-03-16 22:19:28 +08:00
|
|
|
|
|
|
|
for cmd in "${cmds[@]}";
|
|
|
|
do
|
|
|
|
echo Current CMD : "$cmd"
|
2024-04-17 17:40:20 +08:00
|
|
|
gnome-terminal -- bash -c "source /home/firmament/codes/24navigation/install/setup.bash;$cmd;exec bash;"
|
2024-03-16 22:19:28 +08:00
|
|
|
sleep 0.2
|
|
|
|
done
|
2024-04-17 17:40:20 +08:00
|
|
|
|
|
|
|
exit 0
|