ros怎么新建文本文档
时间: 2024-06-13 11:06:53 浏览: 384
新建文本文档1
以下是在ROS包中新建文本文档的步骤:
1. 进入ROS包的目录下,例如helloworld。
2. 在该目录下新建一个scripts文件夹,可以使用以下命令:
```shell
mkdir scripts
```
3. 进入scripts文件夹,使用以下命令新建一个txt文件,例如hello.txt:
```shell
cd scripts
touch hello.txt
```
4. 编写你想要的内容到hello.txt文件中,例如:
```
Hello World!
```
5. 保存并退出hello.txt文件。
阅读全文