1
0
Fork 0
dotfiles/.local/bin/scripts/wdate
2025-11-11 00:41:42 +03:00

9 lines
111 B
Bash
Executable file

#!/bin/sh
trap 'echo; exit' 'INT'
while :; do
printf '\r'
date "$@" | tr -d '\n'
sleep 0.99
done