You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rwxrob-dot/scripts/semver-sort

15 lines
241 B
Perl

#!/usr/bin/perl
# Sorts simple semantic versions.
use v5.18;
my @versions = <STDIN>;
sub num {
$_ = shift;
s/^v//;
sprintf "%09i%09i%09i", split /\./;
}
print(grep {s,^,v,} sort {num($a) <=> num($b)} grep {s,^v,,} @versions)