You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
666 B
34 lines
666 B
# |
|
# Defines MacPorts aliases and adds MacPorts directories to path variables. |
|
# |
|
# Authors: |
|
# Matt Cable <wozz@wookie.net> |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
# Return if requirements are not found. |
|
if [[ "$OSTYPE" != darwin* ]]; then |
|
return 1 |
|
fi |
|
|
|
# |
|
# Paths |
|
# |
|
|
|
# Set the list of directories that Zsh searches for programs. |
|
path=( |
|
/opt/local/{bin,sbin} |
|
$path |
|
) |
|
|
|
# |
|
# Aliases |
|
# |
|
|
|
alias portc='sudo port clean --all installed' |
|
alias porti='sudo port install' |
|
alias ports='port search' |
|
alias portU='sudo port selfupdate && sudo port upgrade outdated' |
|
alias portu='sudo port upgrade' |
|
alias portX='sudo port -u uninstall' |
|
alias portx='sudo port uninstall'
|
|
|