Versions Compared

Key

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

...

Code Block
languagebash
$ mkdir ~/MaterialArchive
 
# Determine the TRACER version number with:
$ ls -l /opt/local/TRACER
 
# Substitute in the version number for <version_number>
$ rsync -av /opt/local/TRACER/<version_number>/bin/MaterialArchive/ ~/MaterialArchive/
 


Code Block
languagebash
# For example:
ls -l /opt/local/TRACER

# Gives output:
total 0
drwxr-xr-x.  6 root root 159 Dec 11 12:02 2.8.1

# the last set of numbers, after a date and time, is the version
# the version number is, in this case, 2.8.1 . And the copy command would therefor be:
rsync -av /opt/local/TRACER/2.8.1/bin/MaterialArchive/ ~/MaterialArchive/

Manual and Videos:

...