提交 1d60b873 编写于 作者: A Alexander Kapshuk 提交者: Greg Kroah-Hartman

ver_linux: make --version, use regex to find version number

Rely on regex to find the version number, rather than a field number.
Reduce the number of 'awk' invocations from two to one.
Signed-off-by: NAlexander Kapshuk <alexander.kapshuk@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 235024e5
...@@ -18,8 +18,12 @@ awk '/[0-9]+([.]?[0-9]+)+/ && !/not found$/{ ...@@ -18,8 +18,12 @@ awk '/[0-9]+([.]?[0-9]+)+/ && !/not found$/{
substr($0,RSTART,RLENGTH)) substr($0,RSTART,RLENGTH))
}' }'
make --version 2>&1 | awk -F, '{print $1}' | awk \ make --version 2>&1 |
'/GNU Make/{print "Gnu make ",$NF}' awk '/GNU Make/{
match($0, /[0-9]+([.]?[0-9]+)+/)
printf("GNU Make\t\t%s\n",
substr($0,RSTART,RLENGTH))
}'
echo "binutils $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')" echo "binutils $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册