Codebase list icinga / upstream/1.8.3 indent-all.sh
upstream/1.8.3

Tree @upstream/1.8.3 (Download .tar.gz)

indent-all.sh @upstream/1.8.3raw · history · blame

1
2
3
4
5
#!/bin/sh

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