From 071cc5938764fb2a385e3d2abcd5ff244ff67564 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Fri, 31 Jul 2020 08:13:06 -0500 Subject: [PATCH] add uname -r only --- diagnostic | 3 +++ 1 file changed, 3 insertions(+) diff --git a/diagnostic b/diagnostic index 48048f2..7021333 100644 --- a/diagnostic +++ b/diagnostic @@ -210,8 +210,11 @@ CHECK #get system info WHO=$(whoami) +KERNAL=$(uname -r) echo "User Name is $WHO" > $DIR/systeminfo.txt echo "" >> $DIR/systeminfo.txt +echo "Kernal version is $KERNAL" >> $DIR/systeminfo.txt +echo "" >> $DIR/systeminfo.txt cat /etc/os-release >> $DIR/systeminfo.txt echo;echo;echo "#####uname######" >> $DIR/systeminfo.txt uname -a >> $DIR/systeminfo.txt