File: bbtidy.pl

package info (click to toggle)
perltidy 20180220-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,100 kB
  • sloc: perl: 21,644; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/perl -wn

# This program was posted on the MacPerl mailing list by 
# Charles Albrecht as one way to get perltidy to work as a filter
# under BBEdit.

use Perl::Tidy;

BEGIN { my $input_string = ""; my $output_string = ""; }

$input_string .= $_;

END {
    my $err=Perl::Tidy::perltidy(
        source      => \$input_string,
        destination => \$output_string
    );
    if ($err){
        die "Error calling perltidy\n";
    }
    print "$output_string\n";
}

__END__