chomp($out), print "Output: $out\n" if $out; #### if ($out) { chomp($out); print "Output: $out\n"; } #### chomp($out); print "Output: ", length($out) ? $out : "[nothing]", "\n";
## if ($out) { chomp($out); print "Output: $out\n"; } ##
## chomp($out); print "Output: ", length($out) ? $out : "[nothing]", "\n";