Sorting image file lists.

This commit is contained in:
Daniel Baumann 2008-04-15 17:38:03 +02:00
parent 3f703f4802
commit ece0f9b574
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ cat ../md5sum.txt >> md5sum.txt
rm -f ../md5sum.txt rm -f ../md5sum.txt
# File list # File list
find . | sed -e 's|^.||g' | grep "^/" > ../binary.list find . | sed -e 's|^.||g' | grep "^/" | sort > ../binary.list
cd "${OLDPWD}" cd "${OLDPWD}"

View File

@ -75,7 +75,7 @@ cat ../md5sum.txt >> md5sum.txt
rm -f ../md5sum.txt rm -f ../md5sum.txt
# File list # File list
find . | sed -e 's|^.||g' | grep "^/" > ../source.list find . | sed -e 's|^.||g' | grep "^/" | sort > ../source.list
cd "${OLDPWD}" cd "${OLDPWD}"