Guest User

Untitled

a guest
Jul 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.71 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 aliases and functions
  9.  
  10. case "$TERM" in
  11. xterm*) XTITLE="\[\e]0;\u@\h\a\]"
  12.         ;;
  13. rxvt*)  XTITLE="\[\e]0;\u@\h\a\]"
  14.         ;;
  15. *)      XTITLE=""
  16.         ;;
  17. esac
  18.  
  19.  
  20. PS1=$XTITLE"<\u@\h>\$ "
  21. EDITOR="/bin/vi"
  22.  
  23. PATH=/opt/wine/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/home/ajones/bin
  24.  
  25. unalias -a
  26. alias ll='ls -l --color=never'
  27. alias la='ls -al --color=never'
  28.  
  29. # fix braindead history behaviour
  30. export HISTSIZE=5000
  31. export HISTCONTROL=ignoredups
  32. export HISTTIMEFORMAT="%F %T "
  33. shopt -s histappend
  34.  
  35. source ~/.bashrc.unsafe
Add Comment
Please, Sign In to add comment