Workaround for the debian sort(1) bug

This commit is contained in:
pancake 2015-04-20 11:57:33 +02:00
parent 070836b326
commit 66a372b427
1 changed files with 1 additions and 2 deletions

View File

@ -135,8 +135,7 @@ else
fi
dosort () {
( for a in $1 ; do echo $a ; done ) | ${SORT}
( for a in $1 ; do echo $a ; done ) | tr _ Z | ${SORT} | tr Z _
#( for a in $1 ; do echo $a ; done ) | sort -t. --key=1,1d
}