scripts/clockscript.sh
2023-04-15 10:05:08 -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