From ea452811d62f647907152c4c94165aed70ae01ab Mon Sep 17 00:00:00 2001 From: superp00t Date: Mon, 14 Apr 2025 21:27:12 -0400 Subject: [PATCH] feat(script): add tidy-profile script to sort all symbol files in a profile --- script/tidy-profile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 script/tidy-profile diff --git a/script/tidy-profile b/script/tidy-profile new file mode 100644 index 0000000..f6cce54 --- /dev/null +++ b/script/tidy-profile @@ -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 {} \; \ No newline at end of file