Skip to main content

Robert Test Page


This is a code block:


Reports Module Home Page Icon Explanations

Icon

Explanation

image

The star icon stars a report (marking the report as important). This acts as an additional filter, as you can filter by “Starred Only” on the Reports Home Page.

image

The excel icon will download the report in an excel (.xlsx) file to your personal device.

image

The download icon opens the Download Modal which allows an individual to select from seven different formats to download the report from a dropdown menu. Possible download formats are listed to the right.

WIKI LINK HOW TO: DOWNLOAD A REPORT

Comma Separated Values (.csv)

Tab Separated Values (.tsv)

Other Separated Values (.txt)

Open Document Format (.ods)

Excel 97 (.xls)

Excel 2007 and later (.xlsx)

PDF

image

The chart icon opens the Chart Wizard Modal, allowing an individual to create a chart from the data generated by the report. WIKI LINK HOW TO: CREATE A CHART


Title

Title

















#!/bin/sh
  
errors=""

sudo rsync -avh --delete --no-o --no-g /home/xralf/audio /media/extdevice/rsync_backups/
if [ "$?" -eq "0" ]
then
  echo "no errors in audio"
else
  errors="${errors}error in audio\n"
fi

sudo rsync -avh --delete --no-o --no-g /home/xralf/books /media/extdevice/rsync_backups/
if [ "$?" -eq "0" ]
then
  echo "no errors in books"
else
  errors="${errors}error in books\n"
fi

sudo rsync -avh --delete --no-o --no-g /home/xralf/source_code /media/extdevice/rsync_backups/
if [ "$?" -eq "0" ]
then
  echo "no errors in source_code"
else
  errors="${errors}error in source_code\n"
fi

# more such directories with this code pattern

echo ${errors}