Stream editor. Using regular expression, editor the standard input.
echo '_Test' | sed 's/.//'
evaluates to:
Test
Use the -u switch for unbuffered output.
echo '_Test' | sed -u 's/.//'