1#! /bin/sh
2#
3# adapt_testfiles.sh <files>
4#
5# Copyright 2002 Stephan Schulz, schulz@informatik.tu-muenchen.de
6#
7# Adapt all files from the command line to the current test
8# environment. This probably only is useful on my local setup.
9#
10
11for file in $* ; do
12    echo Processing $file
13    tmpname=adapt_$$_`hostname`
14    adapt_testfile.awk $file > $tmpname
15    mv $tmpname $file
16done
17
18
19
20