mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
11 lines
131 B
Awk
11 lines
131 B
Awk
# $FreeBSD$
|
|
|
|
BEGIN {
|
|
FS = "[ \t\.\"]+"
|
|
}
|
|
|
|
{
|
|
if ($1 ~ /^#define$/ && $2 ~ /^VERSION$/) {
|
|
printf("%s.%s.%s\n", $3, $4, $5);
|
|
}
|
|
}
|