Files
smartweatherstation_v2.0/lib/WebServer_ESP32_W5500/utils/restyle.sh
2025-07-08 08:54:35 +08: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