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