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.
This commit is contained in:
Deepak Kosaraju 2014-06-12 18:51:48 -07:00
parent 3913106b2e
commit 363798a2d7

View File

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