Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

21 wiersze
945 B

15 lat temu
  1. # Source autojump on BASH or ZSH depending on the shell
  2. #Copyright Joel Schaerer 2008, 2009
  3. #This file is part of autojump
  4. #autojump is free software: you can redistribute it and/or modify
  5. #it under the terms of the GNU General Public License as published by
  6. #the Free Software Foundation, either version 3 of the License, or
  7. #(at your option) any later version.
  8. #
  9. #autojump is distributed in the hope that it will be useful,
  10. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. #GNU General Public License for more details.
  13. #
  14. #You should have received a copy of the GNU General Public License
  15. #along with autojump. If not, see <http://www.gnu.org/licenses/>.
  16. if [ "$BASH_VERSION" ] && [ -n "$PS1" ] && echo $SHELLOPTS | grep -v posix >>/dev/null; then
  17. . /etc/profile.d/autojump.bash
  18. elif [ "$ZSH_VERSION" ] && [ -n "$PS1" ]; then
  19. . /etc/profile.d/autojump.zsh
  20. fi