]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt.cc
move -std=c++11 from CXX to new CXXSTD
[apt.git] / cmdline / apt.cc
index 368822d2d7d53009c049c91285be58e159ae0f2d..761ad60db5ccc6386ea3e606205e3a3ebf76d81f 100644 (file)
 #include <apti18n.h>
                                                                        /*}}}*/
 
-bool ShowHelp(CommandLine &, aptDispatchWithHelp const * Cmds)         /*{{{*/
+bool ShowHelp(CommandLine &)                                           /*{{{*/
 {
    std::cout <<
-    _("Usage: apt [options] command\n"
-      "\n"
-      "CLI for apt.\n")
-    << std::endl;
-   ShowHelpListCommands(Cmds);
+      _("Usage: apt [options] command\n"
+           "\n"
+           "apt is a commandline package manager and provides commands for\n"
+           "searching and managing as well as querying information about packages.\n"
+           "It provides the same functionality as the specialized APT tools,\n"
+           "like apt-get and apt-cache, but enables options more suitable for\n"
+           "interactive use by default.\n");
    return true;
 }
                                                                        /*}}}*/