Files
archived-lcd4linux/indent.sh
michael a71f0a4648 added svn properties and keywords
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@729 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2007-01-14 13:44:38 +00:00

20 lines
273 B
Bash
Executable File

#! /bin/bash
# $Id$
# $URL$
# -kr Use Kernighan & Ritchie coding style.
# -l120 Set maximum line length for non-comment lines to 150.
rm *.c~ *.h~
indent -kr -l120 *.c *.h
for i in *.c *.h; do
if !(diff -q $i $i~); then
rm $i~
else
mv $i~ $i
fi
done