Skip to content

Commit

Permalink
Merge pull request #1065 from ntpeters/patch-1
Browse files Browse the repository at this point in the history
Added more aliases for yum
  • Loading branch information
robbyrussell committed Jun 13, 2012
2 parents 00c8e33 + e429a88 commit d297524
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/yum/yum.plugin.zsh
Expand Up @@ -3,10 +3,14 @@
alias ys="yum search" # search package
alias yp="yum info" # show package info
alias yl="yum list" # list packages
alias ygl="yum grouplist" # list package groups
alias yli="yum list installed" # print all installed packages
alias ymc="yum makecache # rebuilds the yum package list
alias yu="sudo yum update" # upgrate packages
alias yi="sudo yum install" # install package
alias ygi="sudo yum groupinstall" # install package group
alias yr="sudo yum remove" # remove package
alias ygr="sudo yum groupremove" # remove pagage group
alias yrl="sudo yum remove --remove-leaves" # remove package and leaves
alias yc="sudo yum clean all" # clean cache
alias yc="sudo yum clean all" # clean cache

0 comments on commit d297524

Please sign in to comment.