Quiero ejecutar mongocomandos en el script de shell, por ejemplo, en un script test.sh: #!/bin/sh mongo myDbName db.mycollection.findOne() show collections Cuando ejecuto este script vía ./test.sh, se establece la conexión con MongoDB, pero no se ejecutan los siguientes comandos. ¿Cómo ejecutar...