bashrc.root 642 B

1234567891011121314151617181920212223
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # Note: PS1 and umask are already set in /etc/profile. You should not
  3. # need this unless you want different defaults for root.
  4. fqdn=$(hostname -f)
  5. PS1='${debian_chroot:+($debian_chroot)}${fqdn}:\w\$ '
  6. # umask 022
  7. # You may uncomment the following lines if you want `ls' to be colorized:
  8. export LS_OPTIONS='--color=auto'
  9. eval "`dircolors`"
  10. alias ls='ls $LS_OPTIONS'
  11. # alias ll='ls $LS_OPTIONS -l'
  12. # alias l='ls $LS_OPTIONS -lA'
  13. #
  14. # Some more alias to avoid making mistakes:
  15. # alias rm='rm -i'
  16. # alias cp='cp -i'
  17. # alias mv='mv -i'
  18. if [ -f ~/.bash_aliases ]; then
  19. . ~/.bash_aliases
  20. fi