What's happening below? "test1.btm | grep bar" works as I'd expect. But executing the same command in test2.btm doesn't.
Code:
v:\> type test1.btm
echo foo
echo bar
v:\> test1.btm | grep bar
bar
v:\> type test2.btm
test1.btm | grep bar
v:\> test2.btm
foo
bar