dotfiles

Dash Eclipse's dotfiles
git clone git://ezup.dev/dotfiles.git
Log | Files | Refs | README | LICENSE

.bashrc (577B)


      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
      8
      9# Test for an interactive shell.  There is no need to set anything
     10# past this point for scp and rcp, and it's important to refrain from
     11# outputting anything in those cases.
     12if [[ $- != *i* ]] ; then
     13	# Shell is non-interactive.  Be done now!
     14	return
     15fi
     16
     17
     18# Put your fun stuff here.
     19#PS1="\w \$\[\033[00m\] "