scripts/clockscript.sh

10 lines
141 B
Bash
Raw Normal View History

2023-04-15 10:05:08 -05:00
#!/bin/bash
while sleep 1
do
DATE=$(date)
tput bold
echo "${DATE} "
tput cuu 2
tput sgr0
done