home *** CD-ROM | disk | FTP | other *** search
/ com!online 2005 May / com_0505_1.iso / opensource / Linux / .bashrc next >
Encoding:
Text File  |  2005-02-22  |  786 b   |  33 lines

  1. # base-files version 3.2-1
  2.  
  3. # User dependent .bashrc file
  4.  
  5. # See man bash for more options...
  6. # Don't wait for job termination notification
  7. # set -o notify
  8.  
  9. # Don't use ^D to exit
  10. # set -o ignoreeof
  11.  
  12. # Don't put duplicate lines in the history.
  13. # export HISTCONTROL=ignoredups
  14.  
  15. # Some example alias instructions
  16. # alias less='less -r'
  17. # alias rm='rm -i'
  18. # alias whence='type -a'
  19. # alias ls='ls -F --color=tty'
  20. # alias dir='ls --color=auto --format=vertical'
  21. # alias vdir='ls --color=auto --format=long'
  22.  alias ll='ls -l'
  23.  alias la='ls -A'
  24. # alias l='ls -CF'
  25.  
  26. # Some example functions
  27. # function settitle() { echo -n "^[]2;$@^G^[]1;$@^G"; }
  28.  
  29.  
  30. PS1="\[\u\[\033[1;34m\]@\[\033[0;32m\]\h\[\033[1;30m\]:\[\033[1;31m\]\w\[\033[0m\]\[\033[1;34m\]$\[\033[0m\] "
  31.  
  32.  
  33.