# Fix the path for finding programs. PATH=${PATH}:${HOME}/bin:/Applications/rtcmix/bin export PATH # Change the shell prompt. PS1="\w/:\$ " # Type "bd" to toggle between the current directory and # the last one you were in. alias bd='cd ~-' # Make these essential commands safer (require confirmation for # delete or overwrite). alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' # Other handy aliases. alias ls='/bin/ls -F' alias lsl='ls -l' alias lsa='ls -a' alias lsltr='ls -ltr' # Make it easier to type RTcmix jobs alias cmix='CMIX' alias pcmix='PCMIX' alias pycmix='PYCMIX' # Type "sp" in shell after changing this .profile to apply changes to the # current shell. alias sp='source ${HOME}/.profile'