[Lldb-commits] [lldb] r154623 - /lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp

Johnny Chen johnny.chen at apple.com
Thu Apr 12 15:16:23 PDT 2012


Author: johnny
Date: Thu Apr 12 17:16:23 2012
New Revision: 154623

URL: http://llvm.org/viewvc/llvm-project?rev=154623&view=rev
Log:
Add more explicit syntax helps.

Modified:
    lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp

Modified: lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp?rev=154623&r1=154622&r2=154623&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp (original)
+++ lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp Thu Apr 12 17:16:23 2012
@@ -640,8 +640,8 @@
     CommandObjectPlatformGetFile (CommandInterpreter &interpreter) :
     CommandObject (interpreter,
                    "platform get-file",
-                   "Transfer a file from the remote end into the local host.",
-                   NULL,
+                   "Transfer a file from the remote end to the local host.",
+                   "platform get-file <remote-file-spec> <local-file-spec>",
                    0)
     {
         SetHelpLong(
@@ -724,7 +724,7 @@
     CommandObject (interpreter,
                    "platform get-size",
                    "Get the file size from the remote end.",
-                   NULL,
+                   "platform get-size <remote-file-spec>",
                    0)
     {
         SetHelpLong(





More information about the lldb-commits mailing list