028-86922220
建站资讯

网站建设资讯

为你提供网站建设行业资讯、网站优化知识、主机域名邮箱、网站开发常见问题等。

shell中返回一个数组

#!/bin/sh

get_array()
{
a=123
b="123"
c="abc"
echo "$a \"$b\" $c"
}
echo \(`get_array`\)

eval " tt=$(echo \( $(get_array) \) ) "

echo "----XXX ${tt[0]}"
echo "----XXX ${tt[1]}"
echo "----XXX ${tt[2]}"
echo "----XXX ${tt[3]}"
echo "----XXX ${tt[4]}"
echo "----XXX ${tt[5]}"

当前题目:shell中返回一个数组
标题路径:http://whjierui.cn/article/ghhpgi.html

其他资讯