nagios4/indent-all.sh

7 lines
77 B
Bash
Executable File

#!/bin/sh
for f in `find . -type f -name "*.[c]"`; do
./indent.sh $f
done