You have warnings enabled 'the -w switch on shebang'.<br><br>With warnings enabled perl will output a message whenever it detects an undefined value in a join or string interpolation.&nbsp; To demonstrate:<br><br>&nbsp; use warnings;
<br>&nbsp; use strict;<br><br>&nbsp; my $empty = undef;<br>&nbsp; print &quot;Perl will warn about this $empty string.\n&quot;;<br><br>I rarely use warnings in production code.&nbsp; It is better to locally scope warnings in code sections where you are certain you must always have data that is not null.
<br><br>Regards,<br><br>-Bill<br><br>