diff options
Diffstat (limited to 'cmdline/apt.cc')
-rw-r--r-- | cmdline/apt.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmdline/apt.cc b/cmdline/apt.cc index 6bf85467e..f508406d1 100644 --- a/cmdline/apt.cc +++ b/cmdline/apt.cc @@ -66,6 +66,7 @@ static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/ {"remove", &DoInstall, _("remove packages")}, {"autoremove", &DoInstall, _("Remove automatically all unused packages")}, {"auto-remove", &DoInstall, nullptr}, + {"autopurge",&DoInstall, nullptr}, {"purge", &DoInstall, nullptr}, // system wide stuff @@ -90,6 +91,7 @@ static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/ {"source", &DoSource, nullptr}, {"download", &DoDownload, nullptr}, {"changelog", &DoChangelog, nullptr}, + {"info", &ShowPackage, nullptr}, {nullptr, nullptr, nullptr} }; |