6 lines
113 B
Bash
6 lines
113 B
Bash
|
#!/bin/sh
|
||
|
rm -f road.shp road.shx road.dbf
|
||
|
ogr2ogr -f "ESRI Shapefile" road raw/road.gml
|
||
|
mv road/* ./
|
||
|
rmdir road
|