scripts/misc/clockscript.sh
2024-07-02 04:04:00 -05:00

10 lines
No EOL
141 B
Bash
Executable file

#!/bin/bash
while sleep 1
do
DATE=$(date)
tput bold
echo "${DATE} "
tput cuu 2
tput sgr0
done