In this script, I get the error "Illegal modulus zero," but I can't see why it says that. Any ideas?
use strict;
use warnings;
if(!@ARGV){
my $line=1;
$_=<>;
handlefix();
open(INFILE, '<', $_) or die "\nCan't open $_: $!\n";
$_=<>;
handlefix();
open(OUTFILE, '>', $_) or die "\nCan't open $_: $!\n";
while(<INFILE>){
print OUTFILE "_$line",": $_" if $line %% 5==0;
print OUTFILE " $_" if $line %% 5!=0;
$line++;
}
close INFILE && close OUTFILE;
}
if(@ARGV){
my $line=1;
$_= shift @ARGV;
handlefix();
open(INFILE, '<', $_) or die "\nCan't open $_: $!\n";
$_= shift @ARGV;
handlefix();
open(OUTFILE, '>', $_) or die "\nCan't open $_: $!\n";
while(<INFILE>){
print OUTFILE "_$line",": $_" if $line %% 5==0;
print OUTFILE " $_" if $line %% 5!=0;
$line++;
}
close INFILE && close OUTFILE;
}
sub handlefix {
chomp($_);
$_=~s/"//g;
$_=~s/\//\\/g;
return $_;
}
Thanks in advance!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.