mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2025-05-18 21:55:34 +00:00
6 lines
199 B
Bash
6 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
|
|
|