mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 07:51:46 +02:00
8 lines
207 B
Bash
Executable file
8 lines
207 B
Bash
Executable file
#!/usr/bin/awk -f
|
|
# extract linker version number from stdin and turn into single number
|
|
{
|
|
gsub(".*\\)", "");
|
|
split($1,a, ".");
|
|
print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
|
|
exit
|
|
}
|