diff options
author | David Runge <david.runge@frqrec.com> | 2013-12-02 01:44:07 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2013-12-02 01:44:07 +0100 |
commit | b26d45a58e6f2dbce6ee99c7efb1c1a9a96d384e (patch) | |
tree | 1bd4ff15291c1702b1947c8c81fc1a4dfccaff6a | |
parent | 488785891736e1f6c86d2ab07c56ebb9624d2e67 (diff) | |
download | dotfiles-b26d45a58e6f2dbce6ee99c7efb1c1a9a96d384e.tar.gz dotfiles-b26d45a58e6f2dbce6ee99c7efb1c1a9a96d384e.tar.bz2 dotfiles-b26d45a58e6f2dbce6ee99c7efb1c1a9a96d384e.tar.xz dotfiles-b26d45a58e6f2dbce6ee99c7efb1c1a9a96d384e.zip |
Adding some pacman -> apt-get conversions as aliases
-rw-r--r-- | .zsh.after/unixpool.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh.after/unixpool.sh b/.zsh.after/unixpool.sh index dfca336..f5c863a 100644 --- a/.zsh.after/unixpool.sh +++ b/.zsh.after/unixpool.sh @@ -37,7 +37,7 @@ alias pacall="sudo pacman -Qi | awk '/^Name/ {pkg=\$3} /Version/ {ver=\$3} /Size alias pacup='sudo apt-get update && sudo apt-get upgrade' #'sudo pacman -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system. alias pac='sudo apt-get install ' #'sudo pacman -S' # Install specific package(s) from the repositories alias pacu='sudo pacman -U' # Install specific package not from the repositories but from a file -alias pacre='sudo apt-get remove ' #'sudo pacman -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies +alias pacre='sudo apt-get remove ' #'sudo pacman -R' # Remove the specified package(s), retaining its configuration(s) and required ##dependencies alias pacrem='sudo apt-get purge ' #'sudo pacman -Rns' # Remove specified package(s), its configuration(s) and unneeded depends alias pacsearch="pacman -Sl | cut -d' ' -f2 | grep " # Search through all available packages in repo #alias pacname='dpkg -l|grep Name|grep ' #'sudo pacman -Qi|grep Name|grep ' #Search through names of packages by string |