我正在使用mongodb将一些数据转储到我使用git bash shell创建的临时文件夹中
$mkdir -p ~/tmp/mongodump
我尝试使用以下命令将数据转储到文件夹中
$mongodump -h (name of host server) -d (name of database) -o (name of the output destination folder)
问题是git bash告诉我
bash: mongodump: command not found
如何让mongodump工作?