summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Dirolf <mike@10gen.com>2009-09-11 14:14:31 -0400
committerMike Dirolf <mike@10gen.com>2009-09-11 14:14:31 -0400
commiteae40d3e625abfa71b1828fa0a01960f98788c22 (patch)
treedcd2e843fe5cdc88a3ce43e94a411a362b7cd083
parent6d48c898513988d4e69fef26c00fce76f8cb9f8b (diff)
downloadmongo-eae40d3e625abfa71b1828fa0a01960f98788c22.tar.gz
minor: mongofiles more clear docs
-rw-r--r--tools/files.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/files.cpp b/tools/files.cpp
index 6a81cece337..a422be55c7d 100644
--- a/tools/files.cpp
+++ b/tools/files.cpp
@@ -46,9 +46,10 @@ public:
out << "usage: " << _name << " [options] command [filename]" << endl;
out << "command:" << endl;
out << " one of (list|search|put|get)" << endl;
- out << " list - list all files. takes an optional filename. " << endl;
- out << " listed files must start with the filename." << endl;
- out << " search - search all files for something that contains the string" << endl;
+ out << " list - list all files. takes an optional prefix " << endl;
+ out << " which listed filenames must begin with." << endl;
+ out << " search - search all files. takes an optional substring " << endl;
+ out << " which listed filenames must contain." << endl;
out << " put - add a file" << endl;
out << " get - get a file" << endl;
}