All pastes #2092863 Raw Edit

kamil

public text v1 · immutable
#2092863 ·published 2011-11-07 23:43 UTC
rendered paste body
#!/usr/bin/perl -wuse File::ReadBackwards;if (scalar @ARGV != 2){    die "[input_file] [string]";}$bw = File::ReadBackwards->new($ARGV[0]) or die "can't read $ARGV[0] $!";$str = $ARGB[1];until ($bw->eof){    if ($bw->readline =~ /$str$/)    {	print $bw->readline;    }}