From b0ac03f4ddb8a1643313f4f9c04fa6aac9378192 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 23 Jul 1999 20:01:41 +0000 Subject: Moved to top level directory per patch rtems-rc-19990709-0.diff.gz from Ralf Corsepius . --- c/update-tools/word-replace.in | 89 ------------------------------------------ 1 file changed, 89 deletions(-) delete mode 100644 c/update-tools/word-replace.in (limited to 'c/update-tools/word-replace.in') diff --git a/c/update-tools/word-replace.in b/c/update-tools/word-replace.in deleted file mode 100644 index 24c7c3a546..0000000000 --- a/c/update-tools/word-replace.in +++ /dev/null @@ -1,89 +0,0 @@ -#!@PERL@ -# -# $Id$ -# - -eval "exec @PERL@ -S $0 $*" - if $running_under_some_shell; - -require 'getopts.pl'; -&Getopts("p:vh"); # help, pattern file, verbose, - -if ($opt_h || ! $opt_p) { - print STDERR <) -{ - chop; - s/#.*//; - next if /^$/; - ($orig, $new, $junk, @rest) = split; - next if ( ! $orig || ! $new || $junk); # <2 or >2 patterns - die "pattern appears 2x: '$orig' in '$pattern_file'--" if defined($patterns{$orig}); - $patterns{$orig} = $new; -} -close PATTERNS; - -# walk thru each line in each file -foreach $file (@ARGV) -{ - print "$file\t"; - - open (INFILE, "<$file") || - die "could not open input file $file: $!"; - - $outfile = $file . ".fixed";; - open (OUTFILE, ">$outfile") || - die "could not open output file $outfile: $!"; - - while () - { - study; # maybe make s/// faster - foreach $key (keys %patterns) - { - if ( s/\b$key\b/$patterns{$key}/ge ) - { - print "."; - } - } - print OUTFILE $_; - } - print "\n"; - close INFILE; - close OUTFILE; -} - -- cgit v1.2.3