NAME
Prty::Ipc - Interprozesskommunikation
BASE CLASS
METHODS
Methods
filter() - Rufe ein Kommando als Filter auf
Synopsis
($out,$err) = Prty::Ipc->filter($cmd,$in,@opt);
($out,$err) = Prty::Ipc->filter($cmd,@opt);
Options
- -ignoreError => $bool (Default: 0)
-
Ignoriere Exitcode von Kommando $cmd. D.h. es wird keine Exception geworfen, wenn das Kommando fehlschlägt.
Description
Rufe Kommando $cmd als Filter auf. Das Kommando erhält die Daten $in auf stdin und liefert die Daten $out und $err auf stdout bzw. stderr.
Achtung: Der Aufruf kann zu einem SIGPIPE führen, wenn per Parameter $in Daten an $cmd gesendet werden und das Kommando terminiert, bevor es alle Daten gelesen hat. Insbesondere sollten keine Daten an ein Kommando gesendet werden, das nicht von stdin liest!
VERSION
1.124
AUTHOR
Frank Seitz, http://fseitz.de/
COPYRIGHT
Copyright (C) 2018 Frank Seitz
LICENSE
This code is free software; you can redistribute it and/or modify it under the same terms as Perl itself.