add the indent-c++ scripts for c++ files ;) and use it.
[hkl.git] / scripts / indent-c++
bloba0d742e3529b589a36dd0188a5e993e22563b388
1 #!/bin/bash
2 # PUBLIC DOMAIN
3 if [ -z "$1" ]; then
4 echo usage: $0 file-to-indent file2 file3 ...
5 exit 1
6 fi
8 for i in $@; do
9 echo Loading $i
10 emacs --batch --load ~/.emacs --file $i \
11 -f c++-mode --eval "(indent-region (point-min) (point-max) nil)" -f save-buffer
12 done