Files
khoih-prog_RPI_PICO_TimerIn…/utils/restyle.sh
T
2022-11-11 18:09:46 -05:00

7 lines
199 B
Bash

#!/bin/bash
for dir in . ; do
find $dir -type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.ino" \) -exec astyle --suffix=none --options=./utils/astyle_library.conf \{\} \;
done