7 lines
223 B
Perl
7 lines
223 B
Perl
|
# Displays the results of the script that mines data for the Exceptions file.
|
||
|
|
||
|
use 5.12.0;
|
||
|
my $fileToSearch = $ARGV[0];
|
||
|
my $stringToSearch = $ARGV[1];
|
||
|
|
||
|
say "\$fileToSearch: $fileToSearch, \$stringToSearch: $stringToSearch"
|