Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

globbing and quoting in a function



Hi!

I use the following alias to show the last 30 files changed:

alias lsnew='ls -tr -dl *(om[1,30])'


Now I want to convert it to a function to specify the '*' as
parameter:

I tried the following, but the $1 is not combined with the glob
modifier.

function lsnew () {
    ls -tr -dl $1(om[1,30])
}


So is there a way to make 'lsnew a*' work?

Stefan.



Messages sorted by: Reverse Date, Date, Thread, Author