+"conf" for: scripts/kconfig/conf
[nethome.git] / bin / kernel / kernelLogfix
1 #! /bin/bash
2 #
3 # $Id$
4 #
5 # Subst $Log...$ -> %Log...% in all the subdirectories.
6 # Required for proper diffing of CVSed Linux kernel sourcetrees.
7
8
9 find -type f|grep -v /CVS/|xargs perl -i -p -e '
10         s/\$(
11                 Log
12                 )(?::[^\$]*)?\$
13                 /\%$1\%/gx;
14         '