1 |
68
|
aaronmk
|
#!/bin/bash
|
2 |
|
|
# Extracts plot subpaths from VegX-VegBank.csv
|
3 |
|
|
|
4 |
|
|
selfDir="$(dirname -- "$0")"
|
5 |
|
|
cd "$selfDir"
|
6 |
|
|
|
7 |
|
|
export left_subpath='*ID->' left_new_root='/*s/plotObservation/' \
|
8 |
|
|
right_subpath= right_new_root=
|
9 |
|
|
|
10 |
|
|
../scripts/util/submap <VegX-VegBank.csv >VegX-VegBank.plots.csv
|