#!/usr/bin/perl use strict; use warnings; ##arguments chomp(my $first_arg = $ARGV[0]); chomp(my $second_arg = $ARGV[1]); ###check the arguments are correct if($first_arg ne "something") { #print some errors } if($second_arg ne "something") { #print some errors } ##execute the exe findfile.exe $first_agr $second_arg #### perl 872641.pl Global symbol "$first_agr" requires explicit package name at 872641.pl line 24. Bareword "findfile" not allowed while "strict subs" in use at 872641.pl line 24. Execution of 872641.pl aborted due to compilation errors.