tile/third_party/jsoncpp/get_version.pl

6 lines
60 B
Perl
Raw Normal View History

2024-12-19 13:14:37 +08:00
while (<>) {
if (/version : '(.+)',/) {
print "$1";
}
}