repo.or.cz
/
PostgreSQL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Disallow empty passwords in LDAP authentication, the same way
[PostgreSQL.git]
/
src
/
test
/
locale
/
sort-test.pl
blob
aedfa22c88fb2243ebf39b6d3ae0da4f092e95f2
1
#! /usr/bin/perl
2
use
locale
;
3
4
open
(
INFILE
,
"<
$ARGV
[0]"
);
5
chop
(
my
(
@words
) = <
INFILE
>);
6
close
(
INFILE
);
7
8
$
"="
\n
";
9
my(
@result
) = sort
@words
;
10
11
print "
@result
\n
";