@echo off

echo -- here is our test file, HELLO.TXT
type hello.txt

echo -- replace tabs with '*'
.\trch ^I * < hello.txt

echo -- replace 'e' with 'X'
.\trch e X < hello.txt

echo -- replace end of line ('\n') with '$'
.\trch \n $ < hello.txt

echo.
