Sort LC_ALL=C to get Linux sort to order Beginners as expected.

Remove other unnecessary uses of sort. When generating intermediate
files, it doesn't matter in what order it happens.
This commit is contained in:
Jim Hague 2020-02-19 11:14:40 +00:00
parent 7f09e796d9
commit b6a4389bca
6 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ rm -f $tunesoutput $indexoutput
# Now, for each tune, build the tunes part and the first line sections
# of the document.
find $booke -maxdepth 1 -name "*.abc" | sort |
find $booke -maxdepth 1 -name "*.abc" | LC_ALL=C sort
while read filename
do
name=`basename $filename .abc`

View File

@ -53,7 +53,7 @@ cp $booke/*.txt $booke/*.md $booke/image.jpg $outdir
echo "Cello" > $outdir/instrument.txt
find $booke -name "*.abc" | sort |
find $booke -name "*.abc" |
while read filename
do
name=`basename $filename .abc`

View File

@ -25,7 +25,7 @@ cp $booke/*.txt $booke/*.md $booke/image.jpg $outdir
echo "Horn in F" > $outdir/instrument.txt
find $booke -name "*.abc" | sort |
find $booke -name "*.abc" |
while read filename
do
name=`basename $filename .abc`

View File

@ -79,7 +79,7 @@ cp $1-*.pdf $bookewebdir
# Now, for each tune, make the tune page.
rm -f $bookewebdir/$tunelist
declare -a filenames
filenames=(`find $bookedir -maxdepth 1 -name "*.abc" | sort`)
filenames=(`find $bookedir -maxdepth 1 -name "*.abc" | LC_ALL=C sort`)
nofiles=${#filenames[@]}
for (( i=0; i < ${nofiles}; i++ ))
do

View File

@ -79,7 +79,7 @@ Q: ${notelenprefix}${newtempo}" $1 > $tunedir/$newspeedfilename
}
# Generate audio files and slow speed (currently half speed) audio files.
find $booke -maxdepth 1 -name "*.abc" | sort |
find $booke -maxdepth 1 -name "*.abc" |
while read filename
do
name=`basename $filename .abc`

View File

@ -24,7 +24,7 @@ fi
# Now, for each tune, make the main tune and tune first line bitmaps.
# Do this to temp files and rename into place to make updates as
# atomic as possible.
find $booke -maxdepth 1 -name "*.abc" | sort |
find $booke -maxdepth 1 -name "*.abc" |
while read filename
do
name=`basename $filename .abc`