[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Bash argument expanded inside alias



rcb <rcb@beco.cc> 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


Reply to: