#!/bin/bash
echo .
echo ==============================================================
echo === REPSTR - use file globbing pattern '*.x' and '*bar*.*' ===
echo ==============================================================
echo .
rm -f *text*
rm -f *text*.*
cp ../../testdata/base.txt textbar.z
cp ../../testdata/base.txt bartext.y
cp ../../testdata/base.txt footext.x
./repstr -l -t ../../testdata/rule -g "*.x,*bar*.*"
