stud/contours/clip.awk
Motiejus Jakštys cf7b80fed3 contours
2020-12-11 10:44:26 +02:00

9 lines
122 B
Awk
Executable File

#!/usr/bin/awk -f
BEGIN {
FS = ","
}
$1 > ymin && $1 < ymax && $2 > xmin && $2 < xmax {
print $2 "," $1 "," $3
}