Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleSet up $HOME/local/bin directory
mkdir -p ~/local/bin
cd ~/local/bin
ln -s -f /work/projects/BioITeam/common/bin/launcher_creator.py
ln -s -f /work/projects/BioITeam/common/script/launcher_maker.py


Tip
titleThe tilde ( ~ ) character

The tilde character ( ~ ) is a pathname shortcut that means "Home directory". We'll see more of it later.

$HOME is an environment variable set by TACC that also refers to your Home area directory.

...