android_mt6572_jiabo/hardware/intel/img/psb_video/style_unify
2025-09-05 16:56:03 +08:00

11 lines
200 B
Bash
Executable file

#!/bin/bash
file=$(find . -name "*.[ch]" -o -name "*.cpp")
for i in $file
do
echo $i
astyle --style=linux -s4 -c -s -p -U -H -n $i
sed -i 's/[ \t]*$//' $i #remove trailing space
done