How to uninstall bash-completion-lib from Ubuntu
Uninstall bash-completion-lib
To uninstall just bash-completion-lib package itself from Ubuntu execute on terminal:
sudo apt-get remove bash-completion-lib
Uninstall bash-completion-lib and it's dependent packages
To uninstall the bash-completion-lib package and any other dependant package which are no longer needed on Ubuntu.
sudo apt-get autoremove bash-completion-lib
Purging bash-completion-lib
If you also want to delete configuration and/or data files of bash-completion-lib from Ubuntu then this will work:
sudo apt-get purge bash-completion-lib
To delete configuration and/or data files of bash-completion-lib and it's dependencies from Ubuntu then execute:
sudo apt-get autoremove --purge bash-completion-lib
bash-completion-lib package information
name | bash-completion-lib |
---|---|
section | shells |
description | programmable completion for the bash shell bash-completion-lib extends bash's standard completion behavior to achieve complex command lines with just a few keystrokes. This project was conceived to produce programmable completion routines for the most common Linux/UNIX commands, reducing the amount of typing sysadmins and programmers need to do on a daily basis. This is very similar to bash-completion package. bash-completion-lib aims to load faster and consume less memory. |
website | code.google.com/ p/ bash-completion-lib/ |
maintainer | ubuntu-motu@lists.ubuntu.com |
More information about apt-get remove
Advanced Package Tool, or APT, is a free software user interface that works with core libraries to handle the installation and removal of software on Debian, Ubuntu and other Linux distributions. APT simplifies the process of managing software on Unix-like computer systems by automating the retrieval, configuration and installation of software packages, either from precompiled files or by compiling source code.
apt-get is the command-line tool for handling packages, and may be considered the user's "back-end" to other tools using the APT library.
apt-get remove is identical to install except that packages are removed instead of installed. Note that removing a package leaves its configuration files on the system. If a plus sign is appended to the package name (with no intervening space), the identified package will be installed instead of removed.