Skip to content

Instantly share code, notes, and snippets.

@megasaturnv
Last active January 8, 2018 11:15
Show Gist options
  • Select an option

  • Save megasaturnv/4e98c5d45c9a20f49c9132366bd7bfd9 to your computer and use it in GitHub Desktop.

Select an option

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)
#!/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