Versions Compared

Key

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

...

Code Block
languagebash
# For example:
ls -l /etc/alternatives/TRACER

# Gives output:
lrwxrwxrwx. 1 root root 34 Sep 17  2020 /etc/alternatives/TRACER -> /opt/local/TRACER/2.811.1/run_TRACER

# The set of numbers between "TRACER/" and "/run_TRACER" is the version number.
rsync -av /opt/local/TRACER/2.811.1/bin/MaterialArchive/ ~/MaterialArchive/

# The above rsync command will fail if the ~/MaterialArchive/ folder does not exist. Don't forget to first:
mkdir ~/MaterialArchive

# Optionally copy the additional CNF Materials Archive files
$ rsync -av /usr/local/cnf/tracer/MaterialArchive/ ~/MaterialArchive

...