void ShowHelp(List <ICommand> allCommands)
 {
     _assemblyInfo.ShowTitleLines();
     WriteLine(Usage);
     WriteLine(_("Commands:"));
     foreach (var command in allCommands)
     {
         WriteLine("\t{0}\t{1}", command.Name.ToLowerInvariant(), command.Description);
     }
 }