aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2013-11-27 17:15:48 +0100
committerDavid Runge <david.runge@frqrec.com>2013-11-27 17:15:48 +0100
commit3b7e62d1762332c5ce72f3a779ce18905c8da9bb (patch)
treef96927a353c6fef3facc3fd31cc8b83615a99cf5 /.zsh.after
parent967b73cdcd6b3162fa90c4dfd03ae5027e200610 (diff)
downloaddotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.tar.gz
dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.tar.bz2
dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.tar.xz
dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.zip
Fixed typo in alias
Diffstat (limited to '.zsh.after')
-rw-r--r--.zsh.after/unixpool.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh.after/unixpool.sh b/.zsh.after/unixpool.sh
index 40e75c7..c1739e8 100644
--- a/.zsh.after/unixpool.sh
+++ b/.zsh.after/unixpool.sh
@@ -34,7 +34,7 @@ alias paclid="sudo pacman -Qi | sed '/^Depends On/,/^Required By/{ s/^Required B
alias pacsize="pacman -Qi | awk '/^Name/ {pkg=\$3} /Size/ {print \$4\$5,pkg}' | sort -n" #All packages by size
alias pacall="sudo pacman -Qi | awk '/^Name/ {pkg=\$3} /Version/ {ver=\$3} /Size/ {size=\$4\$5} {print pkg,ver,size}' | uniq" #All packages uniquely with name, version, size
#alias pacremorph='sudo pacman -Rs $(pacman -Qtdq)' #Remove all orphaned packages
-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 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