blob: 56833f9386a97305e8cdc1b078761277e8e19a5d [file] [log] [blame]
Denys Vlasenkof451b2c2012-06-09 02:06:57 +02001x="tmp11:tmp22"
2
3# Bug was incorrectly expanding variables in >redir
4echo "${x%:*}" >"${x%:*}"
5echo tmp1*
6rm tmp1*
7
8# Also try unquoted
9echo "${x%:*}" >${x%:*}
10echo tmp1*
11rm tmp1*