#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # List files which have been changed within the last n days, n defaults to 1 function changed () { emulate -L zsh print -l -- *(c-${1:-1}) } # END OF FILE #################################################################