diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2015-01-07 15:49:39 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2015-01-07 15:49:39 +0100 |
commit | 5b5bc8e425c6adbd9f38a4c789c9ab343ddfc8cb (patch) | |
tree | 311e1fad5c040689a731a28e36b1fa3de9c65ffc /ACE | |
parent | 26153900bac8684e83561cbba5ae350b2c14cfcf (diff) | |
download | ATCD-5b5bc8e425c6adbd9f38a4c789c9ab343ddfc8cb.tar.gz |
Initial commit of script to zap all old svn Id lines
* ACE/bin/zap_svn_id.pl:
Added.
Diffstat (limited to 'ACE')
-rwxr-xr-x | ACE/bin/zap_svn_id.pl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ACE/bin/zap_svn_id.pl b/ACE/bin/zap_svn_id.pl new file mode 100755 index 00000000000..28d1e43b124 --- /dev/null +++ b/ACE/bin/zap_svn_id.pl @@ -0,0 +1,17 @@ +eval '(exit $?0)' && eval 'exec perl -pi -S $0 ${1+"$@"}' + & eval 'exec perl -0 -S $0 $argv:q' + if 0; + +# $Id$ +# +# You may want to run the "find" command with this script, which maybe +# something like this: +# +# find . -type f \( -name "*.C" -o -name "*.cc" -o -name "*.c" -o -name "*.cpp" \) -print | xargs $ACE_ROOT/bin/zap_svn_id.pl + +# The first three lines above let this script run without specifying the +# full path to perl, as long as it is in the user's PATH. +# Taken from perlrun man page. + +#undef $/; $s = <>; $s =~ s/ \*\n \* \$Id\$\n \*\n/ \*\n/m; print $s +BEGIN{undef $/;} s/ \*\n \* \$Id\$\n \*\n/ \*\n/smg |