.getResourceAsStream("help/" + name + ".txt");
            if (is == null) {
               context.println("No help available for command '" + name + "'");
            } else {
               try {
                  Man2Ansi man2ansi = new Man2Ansi(context.getOutputAdapter().getWidth() - 8);
                  context.println(man2ansi.render(is));
                  is.close();
               } catch (IOException e) {
               }
            }
         }