shebang line does not work on ubuntu
gabeguz opened this issue · 1 comments
gabeguz commented
Apparently it's the flag to perl combined with env that causes the problem:
#!/usr/bin/env perl -T
$ st numbers.txt
/usr/bin/env: perl -T: No such file or directory
#!/usr/bin/perl -T
$ st numbers.txt
N min max sum mean sd
3.00 1.00 100.00 111.00 37.00 54.74
#!/usr/bin/env perl
$ st numbers.txt
N min max sum mean sd
3.00 1.00 100.00 111.00 37.00 54.74
nferraz commented
I fixed it, thanks for reporting.