diff --git a/tools/projmgr/src/ProjMgr.cpp b/tools/projmgr/src/ProjMgr.cpp index 61701e574..bb1211c05 100644 --- a/tools/projmgr/src/ProjMgr.cpp +++ b/tools/projmgr/src/ProjMgr.cpp @@ -49,7 +49,7 @@ Options:\n\ -d, --debug Enable debug messages\n\ -D, --dry-run Enable dry-run\n\ -e, --export arg Set suffix for exporting .cprj retaining only specified versions\n\ - -f, --filter arg [...] Filter words, repeat options or quote for words\n\ + -f, --filter arg [...] Filter output by word or string; repeat the option for multiple filters\n\ -g, --generator arg Code generator identifier\n\ -l, --load arg Set policy for packs loading [latest | all | required]\n\ -L, --clayer-path arg Set search path for external clayers\n\ @@ -148,7 +148,7 @@ int ProjMgr::ParseCommandLine(int argc, char** argv) { cxxopts::Option solution("s,solution", "Input csolution.yml file", cxxopts::value()); cxxopts::Option context("c,context", "Input context names [][.][+]", cxxopts::value>()); - cxxopts::Option filter("f,filter", "Filter words, repeat options or quote for words", cxxopts::value>()); + cxxopts::Option filter("f,filter", "Filter output by word or string; repeat the option for multiple filters", cxxopts::value>()); cxxopts::Option help("h,help", "Print usage"); cxxopts::Option generator("g,generator", "Code generator identifier", cxxopts::value()); cxxopts::Option load("l,load", "Set policy for packs loading [latest | all | required]", cxxopts::value());