Re: How do I (*|*/*) ?

Bart Schaefer <[email protected]> Sun, 12 Apr 2026 16:48:18 -0700
Newsgroups gmane.comp.shells.zsh.devel,gmane.comp.shells.zsh.user
Message-ID <CAH+w=7ZihmJw_h9ME0AbdMd=Otj0EDpdE_Wh0jpouY-Y9+mdCg@mail.gmail.com>
On Sun, Apr 12, 2026 at 4:33 PM Perry Smith <[email protected]> wrote:
>
> I was in my home directory and ** would take too long.
> I just wanted a smattering of .DS_Store files sorted by size.

**/.DS_Store(Y5OL)

that'll quickly get you exactly 5 files, but that sorts in directory
traversal order before size order.  Maybe just make the Y value bigger
and then trim?

**/.DS_Store(Y100OL[1,5])