diff --git a/bin/xbps-bin/main.c b/bin/xbps-bin/main.c index fb8e1df5..95140827 100644 --- a/bin/xbps-bin/main.c +++ b/bin/xbps-bin/main.c @@ -48,13 +48,13 @@ usage(void) " check\t\t[|]\n" " install\t\t\n" " list\n" + " list-manual\n" " purge\t\t[|]\n" " reconfigure\t\t[|]\n" " remove\t\t\n" " show\t\t\n" " show-deps\t\t\n" " show-files\t\t\n" - " show-manual\n" " show-revdeps\t\n" " update\t\t\n" " Options shared by all targets:\n" @@ -290,9 +290,9 @@ main(int argc, char **argv) rv = xbps_show_pkg_deps(argv[1]); - } else if (strcasecmp(argv[0], "show-manual") == 0) { + } else if (strcasecmp(argv[0], "list-manual") == 0) { /* - * Show packages that were installed manually, not as + * List packages that were installed manually, not as * dependencies. */ if (argc != 1) diff --git a/bin/xbps-bin/xbps-bin.8.txt b/bin/xbps-bin/xbps-bin.8.txt index 66cff5a6..1b821e31 100644 --- a/bin/xbps-bin/xbps-bin.8.txt +++ b/bin/xbps-bin/xbps-bin.8.txt @@ -75,6 +75,10 @@ Please note that all targets are *case insensitive*. *list*:: Lists all currently installed packages. +*list-manual*:: + Lists packages that were installed 'manually' by the user, i.e + not as dependencies of any other package. + *purge 'pkgname' | 'all'*:: Purge an installed package, *pkgname* or *all* packages. The 'purge' stage runs the *post-remove* action set in the *REMOVE* script in its @@ -111,10 +115,6 @@ Please note that all targets are *case insensitive*. *show-files 'pkgname'*:: Shows the list of files that 'pkgname' contains. -*show-manual*:: - Shows the list of packages that were installed 'manually' by the - user, i.e not as dependencies of any other package. - *show-revdeps 'pkgname'*:: Shows the reverse dependencies for 'pkgname'. Reverse dependencies are packages that are currently depending in 'pkgname' directly.