#!/usr/bin/env bash # Highlight the current date when using cal function cal() { if [ -t 1 ]; then ncal -b "${@}"; else command cal "${@}"; fi }