Files
bash/tests/new-exp1.sub
T
2016-12-08 13:04:34 -05:00

13 lines
214 B
Plaintext

FN=${TMPDIR}/bashtest-$$
expect()
{
echo expect "$@"
}
expect this is a test of proc subst
cat <(echo this is a test of proc subst)
echo this is test 2 > $FN
expect this is test 2
cat <(cat $FN)
rm -f $FN