We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f4422f + 0549a51 commit 55e2bbeCopy full SHA for 55e2bbe
win32/bin/pl2bat.pl
@@ -85,8 +85,8 @@ sub process {
85
my $start= $Config{startperl};
86
$start= "#!perl" unless $start =~ /^#!.*perl/;
87
open( FILE, '<', $file ) or die "$0: Can't open $file: $!";
88
- @file = <FILE>;
89
- foreach $line ( @file ) {
+ my @file = <FILE>;
+ foreach my $line ( @file ) {
90
$linenum++;
91
if ( $line =~ /^:endofperl\b/ ) {
92
if( ! exists $OPT{'u'} ) {
win32/bin/search.pl
@@ -1,6 +1,10 @@
1
#!/usr/local/bin/perl -w
2
-'di';
3
-'ig00';
+no strict 'vars';
+{
4
+ no warnings 'void';
5
+ 'di';
6
+ 'ig00';
7
+}
8
##############################################################################
9
##
10
## search
0 commit comments