Sugiro usar o sinalizador -s
para obter um tempo analisável de quando o sistema foi iniciado. E, em seguida, use date
e subtração.
Continue fazendo isso em um loop e compare-o com o registro. O tempo recorde precisa ser salvo no arquivo, é claro.
(O arquivo de registro precisa ser inicializado. echo 0 > record
)
Desde que este script continue em execução, qualquer coisa pode simplesmente ler o arquivo de registro para descobrir qual é o registro atual.
#!/bin/sh
format_time ()
{
t=$1
days=$(($t / 86400))
t=$(($t - 86400*$days))
hours=$(($t / 3600))
t=$(($t - 3600*$hours))
minutes=$(($t / 60))
t=$(($t - 60*$minutes))
echo "$days days $hours hours $minutes minutes $t seconds"
}
main ()
{
# Old record
record="$(cat record)"
# When the system started.
boot="$(date -d "$(uptime -s)" '+%s')"
while true; do
# You could also calculate the uptime before the loop and just
# increment it, but that will rely on the script running 24/7.
now="$(date '+%s')"
current_uptime="$(($now - $boot))"
# Set and save the record when it gets beaten
if [ "$current_uptime" -gt "$record" ]; then
record="$current_uptime"
echo "$record" > record
fi
# Status should be printed _after_ potentially having set
# a new record:
clear
echo "Current uptime: $(format_time "$current_uptime")"
echo "Record uptime: $(format_time "$record")"
# Don't waste system resources for silly things.
sleep 1
done
}
main