15 lines
362 B
Bash
15 lines
362 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# batch format *.{hpp,cpp} files
|
||
|
|
||
|
MAPNIK_DIR="/Users/artem/projects/mapnik"
|
||
|
DIRS="$MAPNIK_DIR/src $MAPNIK_DIR/include $MAPNIK_DIR/bindings $MAPNIK_DIR/utils"
|
||
|
EMACS="emacs"
|
||
|
|
||
|
for file in $(find $DIRS -name '*.cpp' -o -name '*.hpp')
|
||
|
do
|
||
|
$EMACS -batch $file -l $MAPNIK_DIR/utils/format_source_files/mapnik_format.el -f mapnik-format-function
|
||
|
done
|
||
|
|
||
|
|