Windows PowerShell からスクリプトを実行しようとしています:
.\mongo.exe localhost:27017/test --quiet test.js
それはmongoimportを呼び出します:
var c_env = 'dev';
if (c_env === "dev")
{
./mongoimport.exe -d noeldb -c order_notifications --file "D:\Utilities\mongodb\bin\mycollection.json";
}
次のエラーが表示されます。
Tue May 29 09:47:00 SyntaxError: syntax error D:\Noel\Temp\test.js:5
failed to load: D:\Noel\Temp\test.js
これを行うことは可能ですか?