You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
225 B
12 lines
225 B
13 years ago
|
#!/bin/bash
|
||
|
function format {
|
||
|
DIR=$1
|
||
|
find $DIR -regex ".*\.\(h\|cpp\|pde\)" -exec astyle {} \;
|
||
|
find $DIR -regex ".*\.\(h\|cpp\|pde\)" -exec rm {}.orig \;
|
||
|
}
|
||
|
|
||
|
format apo
|
||
|
format ArduRover
|
||
|
format ArduBoat
|
||
|
format libraries/APO
|