.bashrc 551 B

12345678910111213141516171819
  1. # /etc/skel/.bashrc
  2. #
  3. # This file is sourced by all *interactive* bash shells on startup,
  4. # including some apparently interactive shells such as scp and rcp
  5. # that can't tolerate any output. So make sure this doesn't display
  6. # anything or bad things will happen !
  7. # Test for an interactive shell. There is no need to set anything
  8. # past this point for scp and rcp, and it's important to refrain from
  9. # outputting anything in those cases.
  10. if [[ $- != *i* ]] ; then
  11. # Shell is non-interactive. Be done now!
  12. return
  13. fi
  14. # Put your fun stuff here.