From e8bf98654a39164ea936f66472367d5de30ebbb0 Mon Sep 17 00:00:00 2001 From: Erreur32 Date: Wed, 22 Apr 2020 13:58:59 +0200 Subject: [PATCH] first commit --- Stats32 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Stats32 b/Stats32 index 048cb92..791ff74 100755 --- a/Stats32 +++ b/Stats32 @@ -25,8 +25,8 @@ if [ -z "$DISTRIB_DESCRIPTION" ] && [ -x /usr/bin/lsb_release ]; then DISTRIB_DESCRIPTION=$(lsb_release -s -d) fi -nbconnected="$(users | wc -w)" - +users="$(users | wc -w)" +#users=`users | wc -w` load=`cat /proc/loadavg | awk '{print $1}'` root_usage=`df -h / | awk '/\// {print $(NF-1)}'` memory_usage=`free -m | awk '/Mem:/ { total=$2 } /buffers\/cache/ { used=$3 } END { printf("%3.1f%%", used/total*100)}'` @@ -40,13 +40,13 @@ ip=`hostname -i | awk '{ printf $1 }'` printf "Kernel Info [ $DISTRIB_DESCRIPTION ]\n" printf "%s------------\t------\t------------\t--------------\n" printf "System load \e[42;30;1m\t%s\e[0;0m\tIP Address \e[0;1m\e[38;5;166m\t%s\e[0;0m\n" " $load " $ip -printf "Memory usage \e[46;3m\e[30;1m\t%s\e[0;0m\tUptime system \e[33;3m\t%s\e[0;0m\n" " $memory_usage " "$time" +printf " \t%s \tUptime system \e[33;3m\t%s\e[0;0m\n" " " "$time" printf "Process \t(\e[38;5;166m%s\e[0;0m)\tenv LANG \e[33;3m\t%s\e[0;0m\n" " $processes" "$(env | grep LANG=)" printf "User SSH \e[41m\e[1m\t%s\e[0;0m\tShell \e[33;3m\t%s\e[0;0m\n" " $(users | wc -w) " $SHELL printf "%s------------\t------\t------------\t--------------\n" echo -e "\nConected Users $(users | wc -w) \e[3m $(date "+%D %T")\e[0;0m\e[38;5;240m" -[[ -z "$nbconnected" ]] && last -a -n $nbconnected | grep pts | head -3 || last -a -n $nbconnected | grep pts | head -3 +[[ -z "$users" ]] && last -a -n $users | grep pts | head -3 || last -a -n $users | grep pts | head -3 echo -e "\e[0m" -#[[ -z "$nbconnected" ]] && echo "Empty" || echo "Not empty" +#[[ -z "$users" ]] && echo "Empty" || echo "Not empty" echo -e "\e[93m Generated by MOTDs32\e[0m" #echo -n " Welcome " ; whoami