summaryrefslogtreecommitdiffstats
path: root/tools/fix-ids.sh
blob: 39bec82621f6afe4a326cdfbda3d4d63dcc6d055 (plain)
1
2
3
4
5
6
7
8
# $Id: fix-ids.sh,v 1.2 2009-06-25 16:34:50 nicm Exp $

for i in *.[ch] tmux.1; do
    (head -1 $i|grep '$OpenBSD' >/dev/null) || continue
    mv $i $i~ || exit
    sed 's/\$OpenBSD.* \$/$\Id $/' $i~ >$i || exit
    echo $i
done