Re: PATCH: make the W02 test not take a full minute on linux
Bart Schaefer <[email protected]> Thu, 11 Jun 2026 12:59:09 -0700
| Newsgroups | gmane.comp.shells.zsh.devel |
|---|---|
| Message-ID | <CAH+w=7Z_1ViF6Sz=nr+G4St6SM7nGxWfqvL8k=6Pr_K4euKnkg@mail.gmail.com> |
On Thu, Jun 11, 2026 at 11:05 AM Bart Schaefer <[email protected]> wrote: > > % { [[ -t 0 ]] & print -u2 terminal } <>/dev/null Obviously a second & got dropped there somehow, so for completeness: % { [[ -t 0 ]] && print -u2 terminal } >/dev/null terminal % { [[ -t 0 ]] && print -u2 terminal } <>/dev/null %