| 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 | ||||
|---|---|---|---|---|
| ||||
cd # makes your Home directory the "current directory" ln -s -f $SCRATCH scratch ln -s -f $WORK work ln -sf /work/projects/BioITeam/projects/courses/Core_NGS_Tools CoreNGS ls # you'll see the 3 symbolic links you just created ls -l # and this shows where the links point to |
Symbolic links (a.k.a. symlinks) are "pointers" to files or directories elsewhere in the file system hierarchy. You can almost always treat a symlink as if it is the actual file or directory.
...
And Tab completion works on program names too:
| Code Block | ||
|---|---|---|
| ||
cd laun # hit Tab once after typing "laun" # This will expand to launcher_creator.py |
...
| Expand | |||||
|---|---|---|---|---|---|
| |||||
Here's a little command line trick to list the directories on your $PATH on separate lines, using the sed (string editor) program:
sed's string substitution pattern 's/:/\n/g' says to substitute all occurrences (the last g = global modifier) of the colon character : with the "character" \n, which is a newline. |
...