scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

commit f5955b7562685ba54919f0918bf060a7d9d7ac6f
parent 3039c28cb807cff5c36e3e0338af5707ce20efdf
Author: Haris <haris@feanor.lan>
Date:   Tue, 25 Jun 2013 23:58:35 +0300

Removed useless comments

Diffstat:
Mepubtohtml.pl | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/epubtohtml.pl b/epubtohtml.pl @@ -15,12 +15,7 @@ my @filenames = glob "$dir/*.html"; my $i = 0; for ($i = 0; $i < $#filenames; $i++) { - - # print "Previous: $filenames[$i-1]\n"; - # print "Current $filenames[$i]\n"; - # print "Next $filenames[$i+1]\n"; open my $fh, '>>', $filenames[$i] or die "Cound not open $filenames[$i]: $!"; print $fh "<a href=\"$filenames[$i-1]\">Previous Page</a> <a href=\"$filenames[$i+1]\">Next Page</a>"; close $fh; - }