gazebo模型下载

来源:互联网 发布:淘宝引流推广工具 编辑:程序博客网 时间:2024/04/29 17:06

脚本

#!/bin/sh# Download all model archive fileswget -l 2 -nc -r "http://models.gazebosim.org/" --accept gz# This is the folder into which wget downloads the model archivescd "models.gazebosim.org"# Extract all model archivesfor i in *do  tar -zvxf "$i/model.tar.gz"done# Copy extracted files to the local model foldercp -vfR * "$HOME/.gazebo/models/"

参考: