#!/usr/pkg/bin/perl
#
# Display a compressed build log tail
#

require 5.004;

use Fcntl;

print <<END;
Content-Type: text/plain

END
    
sysopen(STDIN, $ARGV[0], O_RDONLY);
exec('/usr/bin/gunzip');

