mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
10 lines
119 B
Awk
10 lines
119 B
Awk
|
|
BEGIN {
|
|
FS = "[ \t\.\"]+"
|
|
}
|
|
|
|
{
|
|
if ($1 ~ /^#define$/ && $2 ~ /^VERSION$/) {
|
|
printf("%s.%s.%s\n", $3, $4, $5);
|
|
}
|
|
}
|