shell中for循环list

eg: # 例子
function test() {

}

function main() {
    arrs=(a.sh b.sh c.sh)
    for i in ${arrs[@]}
        do
            test $i
        done
}

你可能感兴趣的:(linux,shell)