Skip to content

Instantly share code, notes, and snippets.

@mjf
Created April 23, 2012 11:40
Show Gist options
  • Save mjf/2470360 to your computer and use it in GitHub Desktop.
Save mjf/2470360 to your computer and use it in GitHub Desktop.
Show Next/Last Work Day
#! /bin/sh
date -d "`[ $(date +%u) -eq 1 ] && echo 3 days ago || echo yesterday`" $*
#! /bin/sh
date -d "`[ $(date +%u) -eq 5 ] && echo 3 days || echo tomorrow`" $*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment