`dash`是否支持`bash`样式数组?

时间:2013-01-29 23:29:53

标签: linux dash-shell

dash shell环境中,我希望将字符串拆分为数组。以下代码适用于bash,但不适用于dash

IFS=""
var="this is a test|second test|the quick brown fox jumped over the lazy dog"
IFS="|"
test=( $var )
echo ${test[0]}
echo ${test[1]}
echo ${test[2]}

我的问题

dash是否支持此样式的数组。如果没有,是否有任何建议将其解析为另一种类型的变量没有使用循环?

1 个答案:

答案 0 :(得分:7)

dash不支持数组。你可以尝试这样的事情:

var="this is a test|second test|the quick brown fox jumped over the lazy dog"
oldIFS=$IFS
IFS="|"
set -- $var
echo "$1"
echo "$2"
echo "$3"      # Note: if more than $9 you need curly braces e.g. "${10}"
IFS=$oldIFS