[PATCH 13/32] ver_linux: wrap up call to 'xfs_db -V' in awk function

From: Alexander Kapshuk
Date: Tue Jun 28 2016 - 06:24:39 EST


Wrap up the call to 'xfs_db -V', the code to process its output,
and the resulting formatted output in awk functions.

Signed-off-by: Alexander Kapshuk <alexander.kapshuk@xxxxxxxxx>
---
scripts/ver_linux | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/scripts/ver_linux b/scripts/ver_linux
index 2637f2b..a54db0d 100755
--- a/scripts/ver_linux
+++ b/scripts/ver_linux
@@ -22,13 +22,7 @@ BEGIN {
printversion("Jfsutils", version("fsck.jfs -V 2>&1"))
printversion("Reiserfsprogs", version("reiserfsck -V 2>&1"))
printversion("Reiser4fsprogs", version("fsck.reiser4 -V 2>&1"))
-
-xfs_db -V 2>&1 |
-awk '/version/{
- match($0, /[0-9]+([.]?[0-9]+)+/)
- printf("Xfsprogs\t\t%s\n",
- substr($0,RSTART,RLENGTH))
-}'
+ printversion("Xfsprogs", version("xfs_db -V 2>&1"))

pccardctl -V 2>&1 |
awk '/pcmciautils/{
--
2.7.3