Advertisement
Guest User

.bashrc

a guest
Nov 18th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # .bashrc
  2.  
  3. # Source global definitions
  4. if [ -f /etc/bashrc ]; then
  5. . /etc/bashrc
  6. fi
  7.  
  8. # User specific environment
  9. if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
  10. then
  11. PATH="$HOME/.local/bin:$HOME/bin:$PATH"
  12. fi
  13. export PATH
  14.  
  15. # Uncomment the following line if you don$HOMEt like systemctl$HOMEs auto-paging feature:
  16. # export SYSTEMD_PAGER=
  17.  
  18. # User specific aliases and functions
  19.  
  20. # Source bash_aliases file
  21. if [-f ~/.bash_aliases ]; then
  22. source ~/.bash_aliases
  23. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement