#!/bin/bash
echo .
echo ===============================================
echo === REPSTR - recursive directory processing ===
echo ===============================================
echo .
rm -f *text*
rm -f *text*.*
rm -f ./000/*text*.*
cp ../../testdata/base.txt text.foo
cp ../../testdata/base.txt ./000/text.foo
./repstr -l -s -t "../../testdata/rule" -e "foo"
