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

Re: alias limg='ls *.{jpg,gif}(.N)'



On 2006-02-28 13:17:47 -0500, Chris Johnson wrote:
> zzapper sent me the following 0.2K:
> > I was proud of my little alias
> > 
> > alias limg='ls *.{jpg,gif}(.N)'
> > 
> > But it has a teeny-weeny fault; if no image is found it lists everything
> 
> There was some discussion on this in 2004, in which print was suggested
> as a replacement to ls.  Try:
> 
>    http://www.zsh.org/mla/users/2004/msg00621.html

But ls would be better if you want the possibility to add options:

limg() { ls "$@" *.{jpg,gif}(.N) }

-- 
Vincent Lefèvre <vincent@xxxxxxxxxx> - Web: <http://www.vinc17.org/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.org/blog/>
Work: CR INRIA - computer arithmetic / SPACES project at LORIA



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