in reply to Check For null Arguments

Further to ramlight's post: One could also write something like this very early in the code:
    die "no command line arguments given" unless @ARGV;

Replies are listed 'Best First'.
Re^2: Check For null Arguments
by rfleisch (Initiate) on Mar 13, 2013 at 17:44 UTC
    Thanks for these TWO tips. I have included them in my little perl script to have as a reference. Best regards to All -Ray