ogr2ogr menggabungkan beberapa shapefile: Apa tujuan dari tag -nln?

Skrip dasar untuk mengulang secara rekursif atas sub-folder dan menggabungkan semua shapefile menjadi satu adalah: #!/bin/bash consolidated_file="./consolidated.shp" for i in $(find . -name '*.shp'); do if [ ! -f "$consolidated_file" ]; then # first file - create the consolidated output file...