#!/bin/bash
echo .
echo ==================================================================
echo === REPSTR - create backup file with '_' appended to extension ===
echo ==================================================================
echo .
rm -f *text*
rm -f *text*.*
cp ../../testdata/base.txt text
./repstr -l -b "_" -t ../../testdata/rule -f text
