如何在 tcsh 中声明在多行上分隔的项目数组?

如何在 tcsh 中声明在多行上分隔的项目数组?

tcsh我试图声明一个在多行上分隔的项目数组。我试过:

set ignore_array = (
    'a'
    'b'
    'c'
)

还尝试过:

set ignore_array = {
    'a',
    'b',
    'c'
}

我该怎么做?

答案1

通过使用续行(转义每个换行符):

set ignore_array = ( \
    'a' \
    'b' \
    'c' \
)

{ ... }据我所知,带有的表格无效。

相关内容