.bashrc 416 B

123456789101112131415161718
  1. # Personal aliases and functions.
  2. # Personal environment variables and startup programs should go in
  3. # ~/.bash_profile. System wide environment variables and startup
  4. # programs are in /etc/profile. System wide aliases and functions are
  5. # in /etc/bashrc.
  6. if [ -f "/etc/bashrc" ] ; then
  7. source /etc/bashrc
  8. fi
  9. alias ll='ls -l'
  10. alias l='ls -alh'
  11. alias duh='du -h --max-depth=1'
  12. alias dfh='df -h'
  13. # End ~/.bashrc