File: get_ver.awk

package info (click to toggle)
geoip 1.6.12-7
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 1,116 kB
  • sloc: ansic: 16,198; cpp: 1,531; perl: 286; makefile: 100; sh: 62; awk: 13
file content (14 lines) | stat: -rw-r--r-- 410 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# fetch version number from input file and write them to STDOUT
BEGIN {
  while ((getline < ARGV[1]) > 0) {
    if (match ($0, /^VERSION=/)) {
      split($1, t, "=");
      my_ver_str = t[2];
      split(my_ver_str, v, ".");
      gsub("[^0-9].*$", "", v[3]);
      my_ver = v[1] "," v[2] "," v[3];
    }
  }
  print "GEOIP_VERSION = " my_ver "";
  print "GEOIP_VERSION_STR = " my_ver_str "";
}