我正在做一些bash脚本,现在我得到了一个变量source
和一个数组samples
,就像这样:
source='country'
samples=(US Canada Mexico...)
因为我想要扩展源的数量(每个源都有自己的样本),我尝试添加一些参数来做到这一点。我试了一下:
source=""
samples=("")
if [ $1="country" ]; then
source="country"
samples="US Canada Mexico..."
else
echo "try again"
fi
但是当我运行我的脚本source countries.sh country
时,它没有工作。
我做错了什么?< / p >