Do some monitoring:
cat << EOF | mongo
db.stats();
db.serverStatus();
show dbs;
EOF
Show the last 10 entries in natural order:
cat << "EOF" | mongo
use your_db;
db.your_collection.find().sort({$natural:1}).limit(10);
EOF
Drop the database cube_development:
cat << EOF | mongo
show dbs;
use cube_development;
db.dropDatabase();
EOF