[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-bash] Bash syntax for using here-doc's or variables as files i
From: |
João Eiras |
Subject: |
Re: [Help-bash] Bash syntax for using here-doc's or variables as files in process substitution |
Date: |
Wed, 27 Jun 2018 22:00:59 +0200 |
> I would love something that doesn't requiring managing file
> descriptors, but this
> is certainly a workable solution.
You will always need to pass some sort of file descriptor to your
sub-process, so you can do that implicitly with some process
substitution or explicitly with exec while avoiding an extra process.