rusefi/java_console/bin/stopwatch.sh

5 lines
179 B
Bash
Raw Permalink Normal View History

2021-11-28 20:46:37 -08:00
#!/bin/bash
2021-04-25 18:31:04 -07:00
# https://superuser.com/questions/611538/is-there-a-way-to-display-a-countdown-or-stopwatch-timer-in-a-terminal
while true; do echo -ne "`date +%H:%M:%S:%N`\r"; done