SionBayliss / PIRATE

A toolbox for pangenome analysis and threshold evaluation.
GNU General Public License v3.0
89 stars 29 forks source link

Faulty #! lines in scripts/*.pl #13

Closed tseemann closed 5 years ago

tseemann commented 5 years ago
cd PIRATE/scripts

grep -h '^#!' *pl  | sort | uniq -c | sort -n

      1 #!/usr/bin/env perl
      1 #!usr/bin/env perl
      1 #!/usr/bin/perl -w
      2 #!/usr/bin/perl
      2 #!/usr/perl
     19 #!/usr/bin/env perl

They should all be #!/usr/bin/env perl

I assume they worked because you are calling them with perl /path/scripts/foo.pl but it would be good to fix these.

SionBayliss commented 5 years ago

Good catch, all fixed