From a65194b53472bf442c4c7b476d8aeadc025a4c2c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 1 May 2000 16:59:15 +0000 Subject: Removed file rendered obsolete by rtemsdoc-4.5.0-rc-3.diff from Ralf Corsepius . --- doc/tools/word-replace | 89 ------------------------------------------------- doc/tools/word-replace2 | 2 +- 2 files changed, 1 insertion(+), 90 deletions(-) delete mode 100755 doc/tools/word-replace (limited to 'doc') diff --git a/doc/tools/word-replace b/doc/tools/word-replace deleted file mode 100755 index 90e72117fd..0000000000 --- a/doc/tools/word-replace +++ /dev/null @@ -1,89 +0,0 @@ -#!/usr/bin/perl -# -# $Id$ -# - -eval "exec /usr/local/bin/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; -} - diff --git a/doc/tools/word-replace2 b/doc/tools/word-replace2 index 55d24fcb9b..b9e8f6c664 100644 --- a/doc/tools/word-replace2 +++ b/doc/tools/word-replace2 @@ -11,7 +11,7 @@ require 'getopts.pl'; if ($opt_h || ! $opt_p) { print STDERR <