#!/usr/bin/env sh
# ──────────────────────────────────────────────────────────────────────────────
# $source: cappysan-dotfile-scripts$
# ──────────────────────────────────────────────────────────────────────────────
#
# NAME
#      today - just print the date in a ISO style format
#
# SEE ALSO
#      date(1)
#
exec date $@ +"%Y-%m-%d"
