# .bashrc 20 Sept. 2016

#read for interactive but non-login bash shell execution, such as when
#  invoked to run a script file.

#Test to see if PS1 defined (interactive shell)
#If so, configure items that involve and interactive shell.
if [ ! -z "$PS1" ]
then 
  function man {
    /usr/bin/man $* | less
  }

  # set [ctrl]h as backspace
  stty erase "^H"
  # use vi to edit command line.
  set -o vi
fi

# Put any configuration activity that is not dependent on interactive shell.
#   such as using scp or sftp.
touch bashrc.tmp