aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/osm/osm.osm.remove
blob: 83d6ea898a6bb819f2e6304e74220f699ca35bcf (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

while read -r line
do
    # put element type and element ID into array
    array=( $(echo $line) )
    cat $1 |\
    sed -i "/<$array[1] id=\"$array[2]\"/,/<\/$array[1]>/ d"
done