# This file is sourced by bash for login shells. The following line # runs your .bashrc and is recommended by the bash info pages. [[ -f ~/.bashrc ]] && . ~/.bashrc EDITOR=vi export EDITOR source ~/perl5/perlbrew/etc/bashrc export PATH="${HOME}/bin:${PATH}" function pm() { local fn local ex fn="$(perldoc -l "$1")" ex=$? if [[ $ex != 0 ]]; then return $ex fi emacsclient -c -n "$fn" }