I've been using very old version of bbedit and the PERL scripts used to 
smoothly run elsewhere with a sample code (just an example) like:

#!/usr/bin/perl -w

use strict;

my %seen;
while (<>) {
chomp;
$_ = lc $_;
s/\b(\w)/\u$1/g;
    $seen{$_}++;
}

foreach (sort keys %seen) {
print $_, "\n";
}

Now this script under perlish menu (and folder ~/Library/Application 
Support/BBEdit/Scripts/05)Perlish/testScript.pl)  does nothing/is not 
run(can't tell), or it seems that the <> does not get the data from bbedit.

How is the perl stuff changed under 10+ 11+ bbedit's?

where does it go (folder/menu)?
how should it be file to read data? ie still <>?

thanks
alessandro

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://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].

Reply via email to