8 lines
189 B
Plaintext
8 lines
189 B
Plaintext
|
#!/bin/bash
|
||
|
source ~/catkin-ws/devel/setup.bash
|
||
|
source /etc/ros/env.sh
|
||
|
export ROS_HOME=$(echo ~spiri/.ros)
|
||
|
roslaunch jetson_csi_cam video-daylight-nodelet-800x600.launch
|
||
|
PID=$!
|
||
|
wait "$PID"
|