成都网站建设设计

将想法与焦点和您一起共享

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中返回一个数组
网站URL:http://chengdu.cdxwcx.cn/article/ghhpgi.html