nagios4/indent-all.sh

7 lines
77 B
Bash
Raw Normal View History

2017-05-19 22:22:40 +02:00
#!/bin/sh
for f in `find . -type f -name "*.[c]"`; do
./indent.sh $f
done