Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: add <list of packages> note to relevant commands #560

Merged
merged 1 commit into from
Oct 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ cog.out(f"```\n{help}\n```")
]]] -->
```

deb-get {update | upgrade | show pkg | install pkg | reinstall pkg | remove pkg
| purge pkg | search pkg | cache | clean | list | prettylist | csvlist
deb-get {update | upgrade | show <pkg list> | install <pkg list> | reinstall <pkg list> | remove <pkg list>
| purge <pkg list> | search <regex> | cache | clean | list | prettylist | csvlist
| fix-installed [--old-apps] | help | version}

deb-get provides a high-level commandline interface for the package management
Expand All @@ -74,10 +74,10 @@ upgrade
upgrade is used to install the newest versions of all packages currently installed on the system.

install
install is followed by one package desired for installation or upgrading.
install is followed by one package (or a space-separated list of packages) desired for installation or upgrading.

reinstall
reinstall is followed by one package desired for reinstallation.
reinstall is followed by one package (or a space-separated list of packages) desired for reinstallation.

remove
remove is identical to install except that packages are removed instead of installed.
Expand All @@ -92,7 +92,7 @@ search
search for the given regex(7) term(s) from the list of available packages supported by deb-get and display matches.

show
show information about the given package including its install source and update mechanism.
show information about the given package (or a space-separated list of packages) including their install source and update mechanism.

list
list the packages available via deb-get.
Expand Down