mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
8 lines
135 B
Bash
Executable File
8 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
# this script creates a catkin_ws in the current folder
|
|
|
|
mkdir -p catkin_ws/src
|
|
cd catkin_ws/src
|
|
catkin_init_workspace
|
|
cd ..
|