stud/contours/clip.awk

9 lines
122 B
Awk
Raw Normal View History

2020-12-11 10:44:26 +02:00
#!/usr/bin/awk -f
BEGIN {
FS = ","
}
$1 > ymin && $1 < ymax && $2 > xmin && $2 < xmax {
print $2 "," $1 "," $3
}