Re: Filter to reverse order of lines

2017-11-17 Thread Rich Siegel
On 11/17/17 at 6:36 AM, ms...@podiuminternational.org (Marek Stepanek) wrote: I would like to reverse the order of a selected lines with a BBEdit filter. Best with Perl. Just last week, in fact. :-) Enjoy, R. -- Rich Siegel

Re: Filter to reverse order of lines

2017-11-17 Thread Mark Damon Hughes
> On Nov 17, 2017, at 03:36, Marek Stepanek > wrote: > Hello all! > I would like to reverse the order of a selected lines with a BBEdit > filter. Best with Perl. I'm sure there's a Perl one-liner, but the Python script I use is: #!/usr/bin/env python3 import sys

Filter to reverse order of lines

2017-11-17 Thread Marek Stepanek
Hello all! I would like to reverse the order of a selected lines with a BBEdit filter. Best with Perl. My approach is something like follows: #!/usr/bin/local/perl use File::ReadBackwards; use warnings; use strict; tie *BW, 'File::ReadBackwards', (<>) or die