diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-09-06 14:32:30 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-09-06 14:32:30 +0000 |
commit | 027f1c9655391dcb2b0117f931f720211ac933db (patch) | |
tree | 94980f450aa3daec3e1fec217374704ad62cfe45 /source/Commands/CommandObjectPlatform.cpp | |
parent | 5e95aa85bb660d45e9905ef1d7180b2678280660 (diff) |
Notes
Diffstat (limited to 'source/Commands/CommandObjectPlatform.cpp')
-rw-r--r-- | source/Commands/CommandObjectPlatform.cpp | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/source/Commands/CommandObjectPlatform.cpp b/source/Commands/CommandObjectPlatform.cpp index 866587fb4ebc..a0979d059edb 100644 --- a/source/Commands/CommandObjectPlatform.cpp +++ b/source/Commands/CommandObjectPlatform.cpp @@ -1067,10 +1067,12 @@ public: 0) { SetHelpLong( -"Examples: \n\ -\n\ - platform get-file /the/remote/file/path /the/local/file/path\n\ - # Transfer a file from the remote end with file path /the/remote/file/path to the local host.\n"); +R"(Examples: + +(lldb) platform get-file /the/remote/file/path /the/local/file/path + + Transfer a file from the remote end with file path /the/remote/file/path to the local host.)" + ); CommandArgumentEntry arg1, arg2; CommandArgumentData file_arg_remote, file_arg_host; @@ -1150,10 +1152,12 @@ public: 0) { SetHelpLong( -"Examples: \n\ -\n\ - platform get-size /the/remote/file/path\n\ - # Get the file size from the remote end with path /the/remote/file/path.\n"); +R"(Examples: + +(lldb) platform get-size /the/remote/file/path + + Get the file size from the remote end with path /the/remote/file/path.)" + ); CommandArgumentEntry arg1; CommandArgumentData file_arg_remote; |