rcb <[email protected]> wrote: > mudafct() { find . -name "*" -mtime -$1; }
Is there any reason why you're using a { -name "*" } part? A quick test
suggests that you might as well discard it:
mudafct() { find . -mtime -"$1"; }
Chris
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

