diff options
author | David Runge <david.runge@frqrec.com> | 2013-11-27 17:42:34 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2013-11-27 17:42:34 +0100 |
commit | 0a559c4a0ae69051667e7ede4950b6a476ed2dfa (patch) | |
tree | 88ac41c3c1ff22c31aafb2668ed476b00ebf1207 | |
parent | 3b7e62d1762332c5ce72f3a779ce18905c8da9bb (diff) | |
download | dotfiles-0a559c4a0ae69051667e7ede4950b6a476ed2dfa.tar.gz dotfiles-0a559c4a0ae69051667e7ede4950b6a476ed2dfa.tar.bz2 dotfiles-0a559c4a0ae69051667e7ede4950b6a476ed2dfa.tar.xz dotfiles-0a559c4a0ae69051667e7ede4950b6a476ed2dfa.zip |
Fixing some aliases for unixpool
-rw-r--r-- | .zsh.after/unixpool.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.zsh.after/unixpool.sh b/.zsh.after/unixpool.sh index c1739e8..dfca336 100644 --- a/.zsh.after/unixpool.sh +++ b/.zsh.after/unixpool.sh @@ -40,10 +40,10 @@ alias pacu='sudo pacman -U' # Install specific package not from the repositories 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 +#alias pacname='dpkg -l|grep Name|grep ' #'sudo pacman -Qi|grep Name|grep ' #Search through names of packages by string alias pacri='sudo apt-get update && sudo apt-cache show ' #'pacman -Si' # Display information about a given package in the repositories alias pacrs='sudo apt-get update && sudo apt-cache search ' #'pacman -Ss' # Search for package(s) in the repositories -alias pacli='dkpkg -l ' #'pacman -Qi' # Display information about a given package in the local database +alias pacli='dpkg -l ' #'pacman -Qi' # Display information about a given package in the local database alias pacls='dpkg -l|grep ' #'pacman -Qs' # Search for package(s) in the local database alias pacorph='sudo pacman -Qdt' # Search for orphan packages alias paclist='dpkg -L' #'sudo pacman -Ql' # List installed files of a given package |