help-bash
[Top][All Lists]
Advanced

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

Re: pipe or process substitution


From: Alex fxmbsw7 Ratchev
Subject: Re: pipe or process substitution
Date: Fri, 12 Mar 2021 15:18:14 +0100

the <( one
cause with this way it doesnt spawn away
say

foo | read # no good
read .. <( foo ) # yes

gawk <( gawk <( cmd ) ) # similiar same

On Fri, Mar 12, 2021 at 3:17 PM Pascal <patatetom@gmail.com> wrote:

> hi everybody,
> which is the better of the two commands below ?
> strings myfile | grep regexp
> grep regexp <( strings myfile)
> regards.
>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]