motionblurrr has asked for the wisdom of the Perl Monks concerning the following question:
The output to the shell is as follows:#!/usr/bin/perl $res = `echo test`; print $res; print $! . "\n";'
So, what I don't understand is why $! is "Bad file descriptor"? I can choose not to check $! and my script runs fine... but I'm obsessing over why it would present an error at all.test Bad file descriptor
|
|---|