view tailWrapper.pl @ 2:3354a96a6cd8 draft

planemo upload commit 00a7926c285bc4a339bd7deebf40b28f39c7d947-dirty
author devteam
date Tue, 21 Jul 2015 15:59:08 -0400
parents 8bb4d908a523
children
line wrap: on
line source

#! /usr/bin/perl -w

use strict;
use warnings;

# a wrapper for tail for use in galaxy
# lessWrapper.pl [filename] [# lines to show] [output]

die "Check arguments" unless @ARGV == 3;
die "Line number should be an integer\n" unless $ARGV[1]=~ m/^\d+$/;

open (OUT, ">$ARGV[2]") or die "Cannot create $ARGV[2]:$!\n";
open (TAIL, "tail -n $ARGV[1] $ARGV[0]|") or die "Cannot run tail:$!\n";
while (<TAIL>) {
    print OUT;
}
close OUT;
close TAIL;