summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--remote-process/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/remote-process/main.cpp b/remote-process/main.cpp
index e5f7bf5..e2e372e 100644
--- a/remote-process/main.cpp
+++ b/remote-process/main.cpp
@@ -30,14 +30,14 @@
using namespace std;
-// <program> <target> <port> <cmd> <arg>*
+// hostname port command [argument[s]]
int main(int argc, char *argv[])
{
// Enough args?
if (argc < 4) {
cerr << "Missing arguments" << endl;
- cerr << "Usage: " << argv[0] << " <target> <port> <cmd> <arg>*" << endl;
+ cerr << "Usage: " << argv[0] << " hostname port command [argument[s]]" << endl;
return -1;
}