xref
: /
openbsd-src
/
gnu
/
usr.bin
/
perl
/
cpan
/
IPC-Cmd
/
t
/
src
/
child.pl
(revision b39c515898423c8d899e35282f4b395f7cad3298)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
$|++;
2
print
"# Child has TTY? "
. (-
t
STDIN
?
"YES"
:
"NO"
) .
$/
;
3
print
$
_
= <>;
4
5