summaryrefslogtreecommitdiff
path: root/src/mongo/shell/dbshell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/shell/dbshell.cpp')
-rw-r--r--src/mongo/shell/dbshell.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mongo/shell/dbshell.cpp b/src/mongo/shell/dbshell.cpp
index 574be1951b8..560f626b971 100644
--- a/src/mongo/shell/dbshell.cpp
+++ b/src/mongo/shell/dbshell.cpp
@@ -973,12 +973,13 @@ int _main(int argc, char* argv[], char** envp) {
}
if (!hasMongoRC && isatty(fileno(stdin))) {
- std::cout
- << "Welcome to the MongoDB shell.\n"
- "For interactive help, type \"help\".\n"
- "For more comprehensive documentation, see\n\thttp://docs.mongodb.org/\n"
- "Questions? Try the support group\n\thttp://groups.google.com/group/mongodb-user"
- << std::endl;
+ std::cout << "Welcome to the MongoDB shell.\n"
+ "For interactive help, type \"help\".\n"
+ "For more comprehensive documentation, see\n"
+ "\thttps://docs.mongodb.com/\n"
+ "Questions? Try the MongoDB Developer Community Forums\n"
+ "\thttps://community.mongodb.com"
+ << std::endl;
File f;
f.open(rcLocation.c_str(), false); // Create empty .mongorc.js file
}