Hey Folks,

I found a useful plug-in for BBEdit called `entable`.

It's a plain old Perl script, so it can be used as a text-filter in BBEdit or 
from the command line.

http://entable.s3.amazonaws.com/index.html 
<http://entable.s3.amazonaws.com/index.html>

I've changed the shebang/use block in my copy to better support Unicode text:


#!/usr/bin/perl -sw
use v5.010;                 # ccs
use utf8;                   # ccs
binmode(STDIN, ":utf8");    # ccs
binmode(STDOUT, ":utf8");   # ccs


Simple usage as a BBEdit text-filter once installed in /usr/local/bin/

Taking tab as the column delimiter:


#!/usr/bin/env bash
entable INTAB


Place a minimum of 5 spaces between columns:


#!/usr/bin/env bash
entable INTAB -s 5


Pretty slick.  😎

--
Best Regards,
Chris

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or need technical support, please email
"[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <https://www.twitter.com/bbedit>
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/bbedit.

Reply via email to