我需要仅使用 bash 从具有多个选项的 poloniex rest 客户端下载图表数据。我尝试了 getopts 但真的找不到一种方法来使用具有多个参数的多个选项。
这是我想要实现的目标
./getdata.sh -c currency1 currency2 ... -p period1 period2 ...
有我需要c x p
多次调用 wget 的参数
for currency in c
for period in p
wget https://poloniex.com/public?command=returnChartData¤cyPair=BTC_{$currency}&start=1405699200&end=9999999999&period={$period}
好吧,我正在明确地写下我的最终目标,因为现在可能有许多其他人正在寻找它。