All Downloads are FREE. Search and download functionalities are using the official Maven repository.

profiles.bash.rc Maven / Gradle / Ivy

The newest version!
if [ -z "${POMMES_AUTO_CD}" ] ; then
  export POMMES_OLD_PROMPT_COMMAND=$PROMPT_COMMAND

  doPommes() {
    eval "$POMMES_OLD_PROMPT_COMMAND"
    for file in ${POMMES_AUTO_CD}-*; do
        if [ -f "${file}" ] ; then
            cd $(cat $file)
            rm ${file}
        fi
    done
  }
  PROMPT_COMMAND=doPommes
  alias pg='pommes goto'
# else
#   already initialized, nothing to do
fi




© 2015 - 2025 Weber Informatics LLC | Privacy Policy