mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
Many filesystems (e.g. btrfs, apfs) return results in some internal non-alphabetical ordering, which isn't great for minimizing changes to files
13 lines
265 B
Bash
13 lines
265 B
Bash
#!/bin/sh
|
|
|
|
IFS="
|
|
"
|
|
|
|
printf "<RCC>\n"
|
|
printf "\t<qresource>\n"
|
|
for i in $(find . -not -iname '.*' -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99 | sort -f); do
|
|
printf "\t\t<file>%s</file>\n" "$i"
|
|
done
|
|
printf "\t</qresource>\n"
|
|
printf "</RCC>\n"
|
|
|