Files
weval-l99/s204-honest-status.sh
2026-04-20 13:36:02 +02:00

11 lines
300 B
Bash
Executable File

#!/bin/bash
echo -n "S204 honest shell exec: "
uptime -p
echo -n "Load: "
cat /proc/loadavg | cut -d' ' -f1-3
echo -n "RAM: "
free -h | awk '/^Mem:/ {print $3 " / " $2}'
echo -n "Disk: "
df -h / | tail -1 | awk '{print $3 " / " $2 " (" $5 ")"}'
echo "Source: opus46-halluc-fix-20avr real-time shell"