shell: optional support for read -t N.NNN, closes 10101
[oweals/busybox.git] / shell / hush_test / hush-redir / redirA.tests
1 x="tmp11:tmp22"
2
3 # Bug was incorrectly expanding variables in >redir
4 echo "${x%:*}" >"${x%:*}"
5 echo tmp1*
6 rm tmp1*
7
8 # Also try unquoted
9 echo "${x%:*}" >${x%:*}
10 echo tmp1*
11 rm tmp1*