1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00
#! /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:
Peter Eisentraut 2001-01-19 19:06:48 +00:00
parent b7001d0f6a
commit d62d4c3300

View File

@ -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";