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