So I'm trying to run this code...
my $filePath = $ARGV['0'];
if ($filePath eq ""){
print "Missing argument!";
}
It should check the first command line argument, and tell me if its empty, but it returns this error and I can not figure out why:
Use of uninitialized value $filePath in string eq at program.pl line 19.
What am I doing wrong?
Just check to see if $ARGV[0] is defined
#!/usr/bin/perl
use strict;
use warnings;
if(!defined $ARGV[0]){
print "No FilePath Specified!\n";
}
This will print "No FilePath Specified!\n" if there was none passed command line.
The problem you are running into, is you are setting $filePath to an undefined value. Warnings is complaining because you've then tried to compare an undefined value to "". Warnings thinks that is worth telling you about.
I used my example to show a clean way of checking if something is defined, but technically for this, you could also just do:
if(!@ARGV){
print "No FilePath Specified!\n";
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With