in reply to Re^2: Problem in executing the perl oneliner within the script
in thread Problem in executing the perl oneliner within the script
Hi,
"..In our server there is no stricts and warning in stalled @INC hence unable to use this in my test script..."
strict and warnings comes installed with your perl installation. strict since perl 5 and warnings since perl v5.6.0. So if your perl version is newer than the ones i mentioned then you have these pragma installed.
Just use like so
in your perl scripts.use warnings; use strict;
* Updateuse warnings; use strict; for my $file ( glob("*.pl") ) { open my $fh, '<', $file or die $!; while ( defined( $_ = <$fh> ) ) { print $_; print "adding value=key\n" if $. == 3; } }
|
|---|