blob: cadc14d2a5aa8eac4d09f4754c4ea06bc5d54780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#! /bin/bash
# $Id$
# $URL$
# -kr Use Kernighan & Ritchie coding style.
# -l120 Set maximum line length for non-comment lines to 150.
# -npro Do not read ‘.indent.pro’ files.
rm *.c~ *.h~
indent -kr -l120 -npro *.c *.h
for i in *.c *.h; do
if !(diff -q $i $i~); then
rm $i~
else
mv $i~ $i
fi
done
|