ohmyzsh/plugins/macports/macports.plugin.zsh
Deepak Kosaraju 363798a2d7 Added psync(port sync), updated puni, puo
Added psync(port sync) to performs a sync operation only on the ports tree of a MacPorts installation, pulling in the latest revision available of the Portfiles from the MacPorts rsync server.
Added -u option to puni,puo so that it uninstall non-active ports when upgrading and uninstalling.
2014-06-12 18:51:48 -07:00

9 lines
257 B
Bash

#Aliases
alias pc="sudo port clean --all installed"
alias pi="sudo port install $1"
alias psync="sudo port sync"
alias psu="sudo port selfupdate"
alias puni="sudo port -u uninstall inactive"
alias puo="sudo port -u upgrade outdated"
alias pup="psu && puo"