Skip to content

Commit 3cb53fb

Browse files
committed
add cli help
1 parent c6e9904 commit 3cb53fb

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

components/core/src/clp_s/CommandLineArguments.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,8 @@ CommandLineArguments::parse_arguments(int argc, char const** argv) {
643643
<< " - Output to the results cache" << std::endl;
644644
std::cerr << " " << static_cast<char const*>(cReducerOutputHandlerName)
645645
<< " - Output to the reducer" << std::endl;
646+
std::cerr << " " << static_cast<char const*>(cFileOutputHandlerName)
647+
<< " - Output to a file" << std::endl;
646648
std::cerr << std::endl;
647649

648650
std::cerr << "Examples:" << std::endl;
@@ -689,6 +691,7 @@ CommandLineArguments::parse_arguments(int argc, char const** argv) {
689691
visible_options.add(network_output_handler_options);
690692
visible_options.add(results_cache_output_handler_options);
691693
visible_options.add(reducer_output_handler_options);
694+
visible_options.add(file_output_handler_options);
692695
std::cerr << visible_options << '\n';
693696
return ParsingResult::InfoCommand;
694697
}

0 commit comments

Comments
 (0)