Merge pull request #2680 from nayasis/main

sort list in alphabetical order.
This commit is contained in:
fewtarius 2024-01-14 22:22:27 -05:00 committed by GitHub
commit 20fa64452a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -7,4 +7,5 @@
find /usr/share/retroarch/filters/64bit/video/ -name '*.filt' -print0 |
while IFS= read -r -d '' line; do
echo ${line#/usr/share/retroarch/filters/64bit/video/},
done
done | sort

View file

@ -8,4 +8,5 @@
find /storage/overlays/ -name '*.cfg' -print0 |
while IFS= read -r -d '' line; do
echo ${line#/storage/overlays/},
done
done | sort

View file

@ -18,6 +18,6 @@ do
find ${dir} -regex "${option}" -print0 |
while IFS= read -r -d '' line; do
echo ${line#${dir}/},
done
done | sort
fi
done