home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / etc / profile < prev    next >
Text File  |  2006-11-29  |  550b  |  28 lines

  1. umask 022
  2. PATH=/sbin:/bin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/lbin
  3. export PATH
  4. PS1='\w # '
  5. ignoreeof=0
  6. HISTCONTROL=ignoredups
  7. export PS1 ignoreeof HISTCONTROL
  8.  
  9. # no console beep
  10. echo -en "\e[11;0]"
  11.  
  12. alias ll="ls -l -N --color=tty -T 0"
  13. alias la="ls -la -N --color=tty -T 0"
  14. alias ls-l='ls -l'
  15. alias l='ls -lFa'
  16. alias dir='ls -l'
  17. alias pg="less -cf"
  18. alias o='less'
  19. alias which="type -P"
  20. alias -- +='pushd .'
  21. alias -- -='popd'
  22. alias ..="cd .."
  23. alias ...="cd ../.."
  24. alias ....="cd ../../.."
  25. alias .....="cd ../../../.."
  26. alias ......="cd ../../../../.."
  27.  
  28.