From a49e1538d815d7647d29f5ffb7069a3494237407 Mon Sep 17 00:00:00 2001 From: Wonki Kim Date: Sun, 6 Oct 2019 15:09:21 +0300 Subject: [PATCH] enhance help description for command with arguments Summary: there isn't a description to provide a way to run with command with arguments. this patch modifies description for using sential(--) Reviewers: JackDanielZ Reviewed By: JackDanielZ Differential Revision: https://phab.enlightenment.org/D9165 --- src/bin/player.c | 2 +- src/bin/recorder.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/player.c b/src/bin/player.c index 8d192b0..b1331ad 100644 --- a/src/bin/player.c +++ b/src/bin/player.c @@ -1089,7 +1089,7 @@ _my_evas_new(int w EINA_UNUSED, int h EINA_UNUSED) static const Ecore_Getopt optdesc = { "exactness_play", - "%prog [options] <-s|-o|-v|-t|-h> command", + "%prog [options] <-s|-o|-v|-t|-h> [--] command [arg1 arg2 ...]", PACKAGE_VERSION, "(C) 2017 Enlightenment", "BSD", diff --git a/src/bin/recorder.c b/src/bin/recorder.c index ada17d2..688e41b 100644 --- a/src/bin/recorder.c +++ b/src/bin/recorder.c @@ -351,7 +351,7 @@ _mkdir(const char *dir) static const Ecore_Getopt optdesc = { "exactness_record", - "%prog [options] <-v|-t|-h> command", + "%prog [options] <-v|-t|-h> [--] command [arg1 arg2 ...]", PACKAGE_VERSION, "(C) 2017 Enlightenment", "BSD",