feat(script): add tidy-profile script to sort all symbol files in a profile

This commit is contained in:
phaneron 2025-04-14 21:27:12 -04:00
parent c47a94b7fd
commit ea452811d6

7
script/tidy-profile Normal file
View file

@ -0,0 +1,7 @@
if [ $# -eq 0 ]
then
echo "tidy-profile profile"
exit 1
fi
find profile/$1/symbol/ -type f -exec ./script/sort-symbol-file {} \;