1. P243: 里面有一段程序与预料结果有出入
#vim test0
#!/bin/bash
#test the option of array
function functest26 {
local array26
array=('echo "$@"')
echo "the new array value is: ${array26[*]}"
}
array26=(2 3 4 5 6 )
echo "the original array is ${array26[*]}"
functest26 ${array26[*]}
#./test0 the new array value is: 并不能 按预料结果输出
思考不能输出的原因:
阅读(497) | 评论(0) | 转发(0) |