first commit

This commit is contained in:
Erreur32 2020-04-22 13:58:59 +02:00
parent 95fbf3a93c
commit e8bf98654a
1 changed files with 5 additions and 5 deletions

10
Stats32
View File

@ -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 \e[0m"
#echo -n " Welcome " ; whoami