Pádraig Brady wrote: > Follow-up Comment #1, bug #27373 (project coreutils): > > I can't reproduce this or see anything wrong with the code. > > All 720 of my locales work fine: > > $ for LANG in $(locale -a); do printf "KnEnMnZn" | ./sort -h | tr -d 'n'; > echo; done | uniq -c > 720 KMEZ
Pádraig, The web interface ate all of your backslashes: for LANG in $(locale -a); do printf "K\nE\nM\nZ\n" \ | sort -h|tr -d '\n'; echo; done | uniq -c