This may not necessarily be a Perl question maybe a programming logic question in general but I have faith perl can figure it out.
There's a list of version numbers (e.g. 1.0.0.0 1.1.10.1 2.0.0.0 2.1.0.0 10.6.1.0).
There's a minimum and maximum (e.g. 2.0.0.0 and 3.0.0.0).
How do I get a list of the versions that equal or fall in between the min and max? (output would be 2.0.0.0 2.1.0.0).
---
I think the first step is splitting the numbers out into an array each since you can't compare them as-is.
Then maybe iterate through. But I can't quite get the solution...