I have a Perl script that isn\'t working and I don\'t know how to start narrowing down the problem. What can I do?
Note: I\'m adding the question because I rea
Honestly you can do all the fun stuff above this post. ALTHOUGH, the simplest and most proactive solution I found was to just "print it".
In example: (Normal code)
`$somecommand`;
To see if it's doing what I really want it to do: (Trouble shooting)
print "$somecommand";