Need script to redirect STDIN & STDOUT to named pipes
- by user54903
I have an app that launches an authentication helper (my script) and uses STDIN/STDOUT to communicate.
I want to re-direct STDIN and STDOUT from this script to two named pipes for interaction with another program.
E.g.:
SCRIPT_STDIN pipe1
SCRIPT_STDOUT < pipe2
Here is the flow I'm trying to accomplish:
[Application] - Launches helper…