I have a DB called wordlists and a collection called rockyou.
I have a file called rockyou with the contents:
123456
12345
123456789
password
iloveyou
princess
1234567
rockyou
12345678
abc123
What I would like to do is load all of the contents of the file rockyou into the collection rockyou in my wordlists DB. I have tried searching google but the resources seem slim for mongo. I could really use some help with this and also maybe some good resources for this new to me DB application.
Thanks!
**EDIT* Here are the command I have used and some of what I have tried.
use wordlists
db.createCollection("rockyou")
db.rockyou.insert(copyFile(~/wordlists/rockyou))
I have tried some other methods to insert but now realize there were even further off than this one...
If you really want to use only mongoshell, you can use cat() command and do the following (txt is not necessary, it is just how my file was named):
This was tested on Mongo 3.0.1 and produced something like:
But I would application logic here (for example with python):
Yeah that look okay, but if we want to read a comma seperated file. Then how the spliting can be done.