我有一个 bash 脚本,它每天凌晨 1:01 在 cron 中运行,bash 脚本是:
array_of_clients=(2 187 317 927 1863 2993 3077 3440 3444 3457 3459 3469 3484 3487 3494 3497 3522 3544 3551 3553)
for i in "${array_of_clients[@]}"
do
echo "\nRunning Client - $i"
php -f "/mnt/www/bin/scheduled/import_client.php" $i
echo "\nFinished Client - $i"
done
这个问题是我不知道 $i 是否作为参数传递给 php 脚本。难道我做错了什么 ?如果我将 $i 放在 "" 中,它说它找不到文件,因为文件名变为 /mnt/www/bin/scheduled/import_client.php 2 例如
有人可以帮忙吗?