Versions Compared

Key

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

...

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 therefortherefore be:
rsync -av /opt/local/TRACER/2.8.1/bin/MaterialArchive/ ~/MaterialArchive/

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

Manual and Videos:

...