1##
2# Bash
3# User preferences file
4# Override these in rc.mine
5#
6# Wilfredo Sanchez Jr. | tritan@mit.edu
7# July 09, 1992
8#
9# MIT Project Athena
10##
11
12if [ -n "$PS1" ]; then
13
14  # Prompts
15  PS1='[\h:\w] \u\$ '
16  PS2=' -> '
17  #PS3=
18  #PS4=
19
20  set -o emacs
21
22fi
23