diff --git a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx index 788f32db3af1e8d6003bf3ba22b24470931ebdf0..8e8bf46fff30f13de53c5ca26e1e8e2ac9d676bd 100644 --- a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx +++ b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx @@ -565,6 +565,13 @@ void CommandLineLauncher::DisplayHelp() std::cerr << "EXAMPLE OF USE: " << std::endl; std::cerr << m_Application->GetCLExample() << std::endl; } + + std::string link = "http://www.orfeo-toolbox.org/Applications/"; + link.append(m_Application->GetName()); + link.append(".html"); + + std::cerr << "DOCUMENTATION: " << link << std::endl; + std::cerr << "======================= PARAMETERS =======================" << std::endl; const std::vector<std::string> appKeyList = m_Application->GetParametersKeys(true);