Files
stud/contours/clip-2009.awk
2025-06-06 22:03:38 +03:00

8 lines
248 B
Awk
Executable File

#!/usr/bin/env -S awk -f
#
# this file works with SEZP from circa 2009, where x coordinate (the 6-digit one)
# is first, and the field separator is ' ' or more spaces.
$1 > xmin && $1 < xmax && $2 > ymin && $2 < ymax {
print $1 "," $2 "," $3
}