feat: convenience function for relative date

This commit is contained in:
Matthew Ryan Dillon 2024-10-24 13:11:06 -04:00
parent 4b6e98709e
commit 2a11d78908

View file

@ -111,3 +111,7 @@ BASE16_SHELL="$HOME/.config/base16-shell/"
eval "$(/opt/homebrew/bin/brew shellenv)"
{{ end }}
eval "$(direnv hook zsh)"
function reldate() {
date -v "${1}" "+%Y-%m-%d"
}