# # .bash_profile initialization file # # This file created by Dr. J. Hetrick # for PHYS 193 Introduction to # Scientific Computing echo "Initializing from .bash_profile:" # --- setup PATH to executables export PATH=".:$PATH:$HOME/bin" # ----------------------------- echo " >- path" # --- setup BASH SHELL -------- PS1="\h[\w]>" echo " >- bash" # ----------------------------- # --- ENVIRONMENT variables --- export CYGWIN=tty export DISPLAY=127.0.0.1:0.0 # ----------------------------- echo " >- environment vars" # --- Put aliases here ------- alias l='ls -aF' alias ll='ls -alF' alias lt='ls -alFt \!* | head -20' # most recent alias m=less # You can put your own aliases here # ---------------------------- echo " >- aliases" echo "User $USER - Welcome to the Machine"