Forked from moocowmoo/dash_budget_payout_dates.sh
Last active
September 5, 2022 15:15
estimate future dash budget payout dates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
D0=$(TZ=UTC date --date="$(date --date="2015-12-07T08:27:12+0000")"); | |
for block in `seq 398784 16616 $((382168 + (16616*48)))`; | |
do DD=$(TZ=UTC date --date="$(date --date="$D0") +727 hours +5 minutes +2 seconds"); | |
D0=$DD; | |
echo "$block - $DD"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment