HPC/Module Setup
< HPC
Jump to navigation
Jump to search
Shell startup files and modules
- The default login shell on Carbon is bash
- Place customizations in the file
~/.bashrc
# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi export PATH=$HOME/mypackage/bin:$PATH module load name1 name2 ...
- tcsh only if you insist. It is not supported. In fact: “csh programming considered harmful” – Tom Christiansen