rankmirrors: properly sort resulting times

- Properly read each sorted line into a new array, instead of breaking
  on every word.
- LC_COLLATE should apply to the sort portion of the pipeline, not the
  printing.

Signed-off-by: Dave Reisner <dreisner@archlinux.org>
This commit is contained in:
Dave Reisner 2011-09-03 22:23:21 -04:00 committed by Dan McGee
parent a4e0d3e930
commit 7ed54a9940
1 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,8 @@ getfetchurl() {
# This exists to remove the need for a separate interrupt function
finaloutput() {
IFS=$'\n' sortedarray=( $(LC_COLLATE=C printf "%s\n" "${timesarray[@]}" | sort) )
IFS=$'\n' read -r -d '' -a sortedarray < \
<(printf '%s\n' "${timesarray[@]}" | LC_COLLATE=C sort)
# Final output for mirrorfile
numiterator="0"