Dotfiles, utilities, and other apparatus.
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.

23 lines
639 B

2 years ago
2 years ago
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
  3. # for examples
  4. # Alias definitions.
  5. # You may want to put all your additions into a separate file like
  6. # ~/.bash_aliases, instead of adding them here directly.
  7. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  8. if [ -f ~/.bash_aliases ]; then
  9. . ~/.bash_aliases
  10. fi
  11. # If not running interactively, don't do anything
  12. case $- in
  13. *i*) ;;
  14. *) return;;
  15. esac
  16. # don't put duplicate lines or lines starting with space in the history.
  17. # See bash(1) for more options
  18. HISTCONTROL=ignoreboth