Created
April 23, 2012 11:40
-
-
Save mjf/2470360 to your computer and use it in GitHub Desktop.
Show Next/Last Work Day
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 | |
date -d "`[ $(date +%u) -eq 1 ] && echo 3 days ago || echo yesterday`" $* |
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 | |
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