view .work_bashrc @ 9:f6f1deba62af default tip

sic
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 11 Jun 2026 21:16:59 +0100
parents 0c43040ab265
children
line wrap: on
line source

# This .bashrc will work for our singularity containter, because that uses your
#  work directory as its home directory for you

if [ "$PS1" ]; then
  # This is an interactive shell  
  echo "Singularity bash" 1>&2

  # don't put duplicate lines or lines starting with space in the history.
  # See bash(1) for more options
  export HISTCONTROL=ignoreboth

  # append to the history file, don't overwrite it
  shopt -s histappend

  # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  export HISTSIZE=3000
  export HISTFILESIZE=6000
  export HISTIGNORE='[ ]*:&:[fb]g:exit'

 # fix $W -> \$W after tab completion
 shopt -u progcomp

fi

# EDITOR= Uncomment this and give it the name of your preferred editor
#         emacs, nano and xemacs are available
# Let me know if you would like a different one installed