ble-reticulum/scripts/compare_time.sh

23 lines
424 B
Bash
Raw Permalink Normal View History

2026-05-16 08:03:38 -07:00
#!/bin/bash
# compare_local_time.sh
# 20260516 ChatGPT
# $Header$
#
# Infinite loop displaying only Local time from timedatectl.
#
# Example:
# chmod 755 compare_local_time.sh
# ./compare_local_time.sh
#
# Suggested side-by-side usage:
# ssh jlpoole@zerodev1
# ./compare_local_time.sh
#
# ssh jlpoole@zerodev2
# ./compare_local_time.sh
while true
do
timedatectl status | grep 'Local time:'
sleep 1
done