Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. # ~/.profile: executed by the command interpreter for login shells.
  2. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
  3. # exists.
  4. # see /usr/share/doc/bash/examples/startup-files for examples.
  5. # the files are located in the bash-doc package.
  6.  
  7. # the default umask is set in /etc/profile; for setting the umask
  8. # for ssh logins, install and configure the libpam-umask package.
  9. #umask 022
  10.  
  11.  
  12.  
  13. # if running bash
  14. if [ -n "$BASH_VERSION" ]; then
  15. # include .bashrc if it exists
  16. if [ -f "$HOME/.bashrc" ]; then
  17. . "$HOME/.bashrc"
  18. fi
  19. fi
  20.  
  21. PATH="$HOME/bin:$HOME/.local/bin:/usr/bin:$PATH"
  22.  
  23. # set PATH so it includes user's private bin if it exists
  24. if [ -d "$HOME/bin" ] ; then
  25. PATH="$HOME/bin:$PATH"
  26. fi
  27.  
  28. # set PATH so it includes user's private bin if it exists
  29. if [ -d "$HOME/.local/bin" ] ; then
  30. PATH="$HOME/.local/bin:$PATH"
  31. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement