Setting local variables

From HPCwiki
Jump to navigation Jump to search

Environment Variables

Modify .bashrc and .bash_profile

Adding custom directories to the system PATH


PATH=$PATH:$HOME/bin:$HOME/bin/bin

export PATH

Increase number of commands remembered in the history

# Maximum numbers of lines that can be written to the file
export HISTFILESIZE=100000

# Change this to a reasonable number of lines to save
export HISTSIZE=100000

See also

External links