Lines Matching refs:two
43 set -A x zero one two three four 'five six'
56 if [[ ${x[2]} != two ]]
59 if [[ ${x[@]:2:1} != two ]]
72 if [[ ${y[2]} != two ]]
76 if [[ ${y[2]} != two ]]
189 foo=(one two)
191 foo[two]=3
239 ( set -A list one two three four)
259 foo=( $foo two)
285 typeset -A foo=( [two]=1)
289 if [[ ${!foo[@]} != two ]]
302 x=( [one]=1 [two]=2 [three]=3)
303 (x[two]=8)
304 [[ ${x[two]} == 2 ]] || err_exit 'associative array produce side effects in subshells'
306 x=( [one]=1 [two]=2 [three]=3)
343 foo[1]=two
356 foo=(one two)
357 [[ ${foo[@]:1} == two ]] || err_exit '${foo[@]:1} == two'
471 a=(zero one two three four)