I want to execute mongo commands in shell script.
I tried following way test.sh
#!/bin/sh
mongo myDbName
db.mycollection.findOne()
show collections
When I execute above script ./test.sh
Then mongo connection established but next commands not executed
How to execute other commands through sh script [test.sh] ?
Please help me
I use the "heredoc" syntax, which David Young mentions. But there is a catch:
The above will NOT work, because the phrase "$exists" will be seen by the shell and substituted with the value of the environment variable named "exists." Which, likely, doesn't exist, so after shell expansion, it becomes:
In order to have it pass through you have two options. One is ugly, one is quite nice. First, the ugly one: escape the $ signs:
I do NOT recommend this, because it is easy to forget to escape.
The other option is to escape the EOF, like this:
Now, you can put all the dollar signs you want in your heredoc, and the dollar signs are ignored. The down side: That doesn't work if you need to put shell parameters/variables in your mongo script.
Another option you can play with is to mess with your shebang. For example,
There are several problems with this solution:
It only works if you are trying to make a mongo shell script executable from the command line. You can't mix regular shell commands with mongo shell commands. And all you save by doing so is not having to type "mongo" on the command line... (reason enough, of course)
It functions exactly like "mongo <some-js-file>" which means it does not let you use the "use <db>" command.
I have tried adding the database name to the shebang, which you would think would work. Unfortunately, the way the system processes the shebang line, everything after the first space is passed as a single parameter (as if quoted) to the env command, and env fails to find and run it.
Instead, you have to embed the database change within the script itself, like so:
As with anything in life, "there is more than one way to do it!"
As suggested by
theTuxRacer
, you can use the eval command, for those who are missing it like I was, you can also add in your db name if you are not trying to preform operation on the default db.How about this:
Put your mongo script into a
.js
file.Then execute
mongo < yourFile.js
Ex:
demo.js //file has your script
keep this file in "c:\db-scripts"
Then in cmd prompt go to "c:\db-scripts"
This will execute the code in mongo and shows the output
There is an official documentation page about this as well.
Examples from that page include: