Last active
January 8, 2018 11:15
-
-
Save megasaturnv/4e98c5d45c9a20f49c9132366bd7bfd9 to your computer and use it in GitHub Desktop.
Shell one-liner to echo / print the number of days until christmas (or any other arbitrary date)
This file contains hidden or 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/sh | |
| #Megasaturnv 2017-07-28 | |
| echo $(($(date -d 25-Dec +%-j) - $(date +%-j))) days until christmas! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment