Versions Compared

Key

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

...

Warning

If you already have a .bashrc set up, make a backup copy first.

Code Block
languagebash
cd
cp .bashrc .bashrc.beforeNGS

You can restore your original profile after this class is over.

...

Code Block
languagebash
mkdir -p tmp/a/b/c
cd tmp/a/b/c
cdw
cds
cd
# Your prompt should look like this:
stamp:~/tmp/a/b/c$ 

The prompt now tells you you are in the c sub-directory of the b sub-directory of the a sub-directory of the tmp sub-directory of your home directory ( ~ ).

...