diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-01-24 16:00:07 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-01-24 16:00:07 +0000 |
commit | ed18f12f6cc16090a2e1dcdbfdf2e9c46e2063b4 (patch) | |
tree | abe85533e14557d2f28ef7107197c1c4ce904689 /cpp/src/IceGrid/Parser.cpp | |
parent | Fixed Windows processor architecture (diff) | |
download | ice-ed18f12f6cc16090a2e1dcdbfdf2e9c46e2063b4.tar.bz2 ice-ed18f12f6cc16090a2e1dcdbfdf2e9c46e2063b4.tar.xz ice-ed18f12f6cc16090a2e1dcdbfdf2e9c46e2063b4.zip |
Replacted "dump" with "show"
Diffstat (limited to 'cpp/src/IceGrid/Parser.cpp')
-rw-r--r-- | cpp/src/IceGrid/Parser.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/cpp/src/IceGrid/Parser.cpp b/cpp/src/IceGrid/Parser.cpp index fba0141d978..d2c90f05048 100644 --- a/cpp/src/IceGrid/Parser.cpp +++ b/cpp/src/IceGrid/Parser.cpp @@ -87,9 +87,9 @@ static const char* _commandsHelp[][3] = { { "node", "load", "node load NAME Print the load of the node NAME.\n" }, -{ "node", "dump", -"node dump [OPTIONS] NAME [stderr | stdout]\n" -" Dump node NAME stderr or stdout.\n" +{ "node", "show", +"node show [OPTIONS] NAME [stderr | stdout]\n" +" Show node NAME stderr or stdout.\n" " Options:\n" " -f | --follow: Wait for new data to be available\n" " -t N | --tail N: Print the last N lines\n" @@ -107,9 +107,9 @@ static const char* _commandsHelp[][3] = { { "registry", "ping", "registry ping NAME Ping registry NAME.\n" }, -{ "registry", "dump", -"registry dump [OPTIONS] NAME [stderr | stdout]\n" -" Dump registry NAME stderr or stdout.\n" +{ "registry", "show", +"registry show [OPTIONS] NAME [stderr | stdout]\n" +" Show registry NAME stderr or stdout.\n" " Options:\n" " -f | --follow: Wait for new data to be available\n" " -t N | --tail N: Print the last N lines\n" @@ -151,9 +151,9 @@ static const char* _commandsHelp[][3] = { { "server", "stderr", "server stderr ID MESSAGE Write MESSAGE on server ID's stderr.\n" }, -{ "server", "dump", -"server dump [OPTIONS] ID [stderr | stdout | LOGFILE ]\n" -" Dump server ID stderr, stdout or log file LOGFILE.\n" +{ "server", "show", +"server show [OPTIONS] ID [stderr | stdout | LOGFILE ]\n" +" Show server ID stderr, stdout or log file LOGFILE.\n" " Options:\n" " -f | --follow: Wait for new data to be available\n" " -t N | --tail N: Print the last N lines\n" @@ -1423,7 +1423,7 @@ Parser::listObject(const list<string>& args) } void -Parser::dumpFile(const string& reader, const list<string>& origArgs) +Parser::showFile(const string& reader, const list<string>& origArgs) { list<string> copyArgs = origArgs; copyArgs.push_front("icegridadmin"); @@ -1450,7 +1450,7 @@ Parser::dumpFile(const string& reader, const list<string>& origArgs) if(args.size() != 2) { - invalidCommand(reader + " dump", "requires two arguments"); + invalidCommand(reader + " show", "requires two arguments"); return; } |