mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1089 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
21 lines
325 B
Bash
Executable File
21 lines
325 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.
|
||
# -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
|