23 lines
424 B
Bash
Executable file
23 lines
424 B
Bash
Executable file
#!/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
|