diff options
author | David Runge <dave@sleepmap.de> | 2018-11-17 01:08:18 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2018-11-17 01:08:18 +0100 |
commit | 836e1ac848e412f0ea8d5564f625a796c2b9a85f (patch) | |
tree | 9b77c3f53ecd33c4b7384f8314c728aac791a7b7 | |
parent | 80a498c77c62d184731740b94ee5a6188e79726c (diff) | |
download | dotfiles-836e1ac848e412f0ea8d5564f625a796c2b9a85f.tar.gz dotfiles-836e1ac848e412f0ea8d5564f625a796c2b9a85f.tar.bz2 dotfiles-836e1ac848e412f0ea8d5564f625a796c2b9a85f.tar.xz dotfiles-836e1ac848e412f0ea8d5564f625a796c2b9a85f.zip |
.zsh.after/aliases.zsh: Removing useless pacsearch overloading.
-rw-r--r-- | .zsh.after/aliases.zsh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.zsh.after/aliases.zsh b/.zsh.after/aliases.zsh index 8a86938..413dd3b 100644 --- a/.zsh.after/aliases.zsh +++ b/.zsh.after/aliases.zsh @@ -162,7 +162,6 @@ alias pac='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 pacman -R' #Remove the specified package(s), retaining its configuration(s) and required dependencies alias pacrem='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="sudo pacman -Qi|grep Name|grep " #Search through names of packages by string alias pacri='pacman -Si' #Display information about a given package in the repositories alias pacrs='pacman -Ss' #Search for package(s) in the repositories |