Table of Contents |
---|
...
Expand | ||
---|---|---|
| ||
If your Windows version does not have ssh in Command Prompt or PowerShell:
More advanced options for those who want a full Linux environment on their Windows system:
|
From now on, when we refer to "Terminal", it is either the Mac/Linux Terminal program, Windows Command Prompt or PowerShell, or the PuTTY program.
...
Code Block | ||||
---|---|---|---|---|
| ||||
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 | ||
---|---|---|
| ||
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. |
...