pkg:tldr:daf46
pkg: Uninstall a package.
$ pkg uninstall ${package}
try on your machine
This command is written in bash and is used to uninstall a specific package from a Unix-like system using the package manager.
Here, the variable ${package}
represents the name of the package to be uninstalled. The ${}
syntax is used to reference the value of the variable. The actual name of the package should be provided in place of ${package}
.
When this command is executed, the package manager (identified by the pkg
command) will be invoked, and it will proceed to uninstall the specified package from the system.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.