mirror of
https://github.com/postgres/postgres.git
synced 2026-04-20 22:00:13 -04:00
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.
This commit is contained in:
parent
b7001d0f6a
commit
d62d4c3300
1 changed files with 1 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/local/bin/perl -w
|
||||
#! /usr/bin/perl
|
||||
use locale;
|
||||
|
||||
open(INFILE, "<$ARGV[0]");
|
||||
|
|
@ -9,4 +9,3 @@ $"="\n";
|
|||
my(@result) = sort @words;
|
||||
|
||||
print "@result\n";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue