[contrib][haskell] PyFAI.Detector
[hkl.git] / scripts / indent
bloba763dd6eff9d42955aea3a43c203c5afa97392e6
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 ../Documentation/hkl-default.el --file $i \
11 -f c-mode --eval "(indent-region (point-min) (point-max) nil)" -f save-buffer
12 done