Denys Vlasenko | c4cf542 | 2016-10-02 17:55:51 +0200 | [diff] [blame] | 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* |