commit 9c8d68280c9f248f7f1772a709a0910740e1fca8
parent 17bcf6b69b7e5b169e4616e2e66516bd06a84cc4
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date: Sun, 13 Nov 2022 09:58:59 +0100
0s9: Fix help messages
After the change of the command names the help was not
updated.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/os9/dlang.c b/src/os9/dlang.c
@@ -350,14 +350,14 @@ static const struct cmd cmds[] = {
.eval = do_read,
.min = 2,
.max = 2,
- .helpmsg = "Read content from a file: cat path",
+ .helpmsg = "Read content from a file: read path",
},
{
.name = "write",
.eval = do_write,
.min = 3,
.max = NR_ARGC_MAX,
- .helpmsg = "Write content to a file: echo path string ...",
+ .helpmsg = "Write content to a file: write path string ...",
},
{
.name = "stat",