#!/usr/bin/env zsh ################################################################################ # # This file is autoloaded by .zshrc, and actually loaded when executed # ################################################################################ # # Filename: modified # Original authors: grml-team (grml.org), (c) Michael Prokop # Modifications: Dennis Eriksen # License: This file is licensed under the GPL v2. # # Originally from the GRML zshrc file [1] # # 1: # # List files which have been modified within the last n days, n defaults to 1 emulate -L zsh print -l -- *(m-${1:-1}) # END OF FILE #################################################################