You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has the effect of causing the Perl debugger (perl5db.pl) to report: Can't figure out your console, using stdin
Which then means that a debugged program cannot redirect stdin and when an End-of-File is sent to the program while it is reading data from stdin then the debugger terminates and the program and exits.
Can the -e operator return 1 for the Windows special devices like con?
The text was updated successfully, but these errors were encountered:
On Windows, checking for the existence of the special file
con
returns false but opening it works as expected:produces:
This has the effect of causing the Perl debugger (
perl5db.pl
) to report:Can't figure out your console, using stdin
Which then means that a debugged program cannot redirect stdin and when an End-of-File is sent to the program while it is reading data from stdin then the debugger terminates and the program and exits.
Can the
-e
operator return1
for the Windows special devices likecon
?The text was updated successfully, but these errors were encountered: