Commit d62d4c33 authored by Peter Eisentraut's avatar Peter Eisentraut

Change

#! /usr/local/bin/perl -w
to
#! /usr/bin/perl

The path is probably more portable, and the -w was kind of silly for a six
line script that produces two warnings as it stands.
parent b7001d0f
#!/usr/local/bin/perl -w #! /usr/bin/perl
use locale; use locale;
open(INFILE, "<$ARGV[0]"); open(INFILE, "<$ARGV[0]");
...@@ -9,4 +9,3 @@ $"="\n"; ...@@ -9,4 +9,3 @@ $"="\n";
my(@result) = sort @words; my(@result) = sort @words;
print "@result\n"; print "@result\n";
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment