mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-27 03:05:39 +01:00
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.
9 lines
257 B
Bash
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"
|
|
|