aboutsummaryrefslogtreecommitdiffstats
path: root/indent.sh
blob: 11a02b26b1200382273e700779eb0d867c71326b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/bash

# -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