diff options
author | David Runge <david.runge@frqrec.com> | 2013-11-27 17:15:48 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2013-11-27 17:15:48 +0100 |
commit | 3b7e62d1762332c5ce72f3a779ce18905c8da9bb (patch) | |
tree | f96927a353c6fef3facc3fd31cc8b83615a99cf5 | |
parent | 967b73cdcd6b3162fa90c4dfd03ae5027e200610 (diff) | |
download | dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.tar.gz dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.tar.bz2 dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.tar.xz dotfiles-3b7e62d1762332c5ce72f3a779ce18905c8da9bb.zip |
Fixed typo in alias
-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 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 |