#!/usr/bin/perl
##################
# This is written by sopan 
# ./view TWiki.ANytopic skin plain 
# this command was giving output with first three lines as follow:
# 
#Content-length: 237748^M
#Content-Type: text/html; charset=ISO-8859-1^M
#^M
#
#  To get rid of this output - this script is written, this script will be removed soon after 04x03 release
#########################

use strict;
use warnings;

my $i = 0;

my $html = '';
while (<>) {
   $i++;
   if ($i <= 3) { next;}
   $html .= $_; 
}
 print $html;

