This file is indexed.

/usr/lib/pd/extra/fftease/examples/scale4.pl is in pd-fftease 2.5.2.git20121005-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/usr/bin/perl 

# -*-Perl-*-

$file = "13et.scale";

open(OUT, ">$file");

$base = 27.5;
$mult = 2 ** (1/13);
while( $base < 22050 ){
    printf OUT "%.4f\n", $base;
    $base *= $mult;
}
close $file;
print "wrote to $file\n";