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