This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/bin/countdown

14 lines
287 B
Plaintext
Raw Normal View History

2019-09-25 07:16:15 -05:00
#!/usr/bin/env bash
d=$((`date +%s` + $1));
echo "Countdown started $(date)"
while [ "$d" -ge $(date +%s) ]; do
_dt=$(($d - `date +%s`))
days=$((_dt / 86400))
echo -ne "\r${days}d $(date -u --date @$((_dt)) +%H:%M:%S) ";
sleep 0.1
done
echo -ne "\rCountdown finished $(date)\n"