Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. # System-wide .bashrc file for interactive bash(1) shells.
  2.  
  3. # To enable the settings / commands in this file for login shells as well,
  4. # this file has to be sourced in /etc/profile.
  5.  
  6. # If not running interactively, don't do anything
  7.  
  8. # check the window size after each command and, if necessary,
  9. # update the values of LINES and COLUMNS.
  10. shopt -s checkwinsize
  11.  
  12. # set a fancy prompt (non-color, overwrite the one in /etc/profile)
  13. PS1='[\u@\h:\w]\$ '
  14.  
  15. # Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
  16. # If this is an xterm set the title to user@host:dir
  17. #case "$TERM" in
  18. #xterm*|rxvt*)
  19. # PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
  20. # ;;
  21. #*)
  22. # ;;
  23. #esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement