# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # User specific aliases and functions alias ls='ls -F --color=auto' alias lsa='ls -a' alias ll='ls -lh' alias lla='ll -a' alias rm='rm -i' alias mv='mv -i' alias cp='cp -i' alias grep='grep --color=always' alias 374home='cd /cse/web/courses/cse374/16wi/' # the PS1 variable controls what your prompt looks like # guide here: http://courses.cs.washington.edu/courses/cse374/16wi/lectures/PS1-guide.html export PS1="\[\e[0;34m\][\u@\h \w]\$ \[\e[0m\]"